Photoshop脚本:智能对象的坐标

时间:2016-02-23 14:26:02

标签: javascript coordinates photoshop

我是PS脚本的新手,我也不是程序员,所以我有一个非常基本的问题要问。

如何检索智能对象图层的位置坐标?当我试图获得他们的位置时,我的脚本给了我“光栅化”的位置,而不尊重智能对象画布。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

首先选择有问题的图层,然后运行这个小脚本:

tell application id "com.adobe.Photoshop"
    tell current document
        get bounds of current layer as integer
    end tell
end tell