Photoshop重命名为图层名称

时间:2014-04-26 20:29:48

标签: applescript rename photoshop

我需要一个脚本来选择文件夹,打开文件夹中的Photoshop文件,然后将文件重命名为图层的当前名称加上文件扩展名。 (每个图层的名称都不同,因为图像是通过数据合并创建的。到目前为止,我只打开一个图像并获取图层名称,我无法弄清楚文件的重复和重命名:

set inputFolder to choose folder
tell application "Finder"
    set filesList to files in inputFolder
    set myDoc to item 1 of filesList as string
    tell application "Adobe Photoshop CC"
        set display dialogs to never
        open alias myDoc
    end tell
end tell
tell application "Adobe Photoshop CC"
    set layerName to name of current layer of current document as string
    -- close current document saving no
    return layerName as string
end tell

2 个答案:

答案 0 :(得分:1)

像这样:

set inputFolder to choose folder
activate application "Adobe Photoshop CC"
tell application "Finder"
    set filesList to document files in inputFolder
    repeat with tFile in filesList
        set nExtension to name extension of tFile
        set layerName to my getLayerName(tFile as string)
        if layerName is not "" then
            set newName to (layerName & "." & nExtension)
            if newName is not name of tFile then -- else the name is already the layer name
                set i to 1
                repeat while exists item newName in inputFolder -- if same name in the folder (maybe same layer name)
                    set newName to (layerName & i & "." & nExtension)
                    set i to i + 1
                end repeat
                set name of tFile to newName
            end if
        end if
    end repeat
end tell

on getLayerName(myDoc)
    tell application "Adobe Photoshop CC"
        set display dialogs to never
        open alias myDoc
        repeat 5 times
            tell current document to if exists then
                set layerName to (name of current layer) as string
                close saving no
                return layerName
            end if
            delay 1
        end repeat
    end tell
    return "" -- no document
end getLayerName

答案 1 :(得分:0)

Brilliant是一种享受,只是尝试向后设计脚本,在photoshop函数中重复5次将限制脚本只能处理5个文件?并且变量tFile是一个常量,因为变量似乎没有被声明? 对此仍然很新,请原谅我缺乏知识并再次感谢

相关问题