Sto usando AppleScript per elaborare una cartella di immagini TIFF che devono essere convertite in un profilo CMYK specifico in Photoshop. Lo script richiede innanzitutto una cartella contenente le immagini e quindi richiede una posizione della cartella di output. Tuttavia, ottengo il seguente errore durante l'esecuzione dello script:
Adobe Photoshop CC 2015 got an error: Can’t get current document.
La prima cosa che ho provato è stata quella di rimuovere current
dal comando save. Sembra che Photoshop stia effettivamente aprendo e salvando i documenti dopo averlo fatto, tuttavia i TIFF non si trovano nella cartella specificata in newFilePath
. Non sono sicuro di come dovrei gestire questo dato che si suppone di elaborare più file. Lo script attuale è il seguente:
on run
tell me to open {choose folder}
end run
on open droppedItems
set destFolder to choose folder with prompt "Select Output Folder"
repeat with anItem in droppedItems
tell application "Finder"
-- Make sure each item is processed by this script is a folder
if class of item anItem is not folder then
-- Not a folder, notify the user of the error
display dialog "Please drop folders containing images"
else
-- A folder, get the Adobe Photoshop files and process them
set fileList to (every file of anItem) as alias list
end if
end tell
HPConvert(fileList, destFolder)
end repeat
end open
-- fileList is a list of aliases to Photoshop files
-- destFolder is an alias to a folder where the converted TIFFs are to be saved
on HPConvert(fileList, destFolder)
set destPath to destFolder as string
repeat with aFile in fileList
tell application "Finder" to set fileName to name of aFile
set newFilePath to destPath & fileName
tell application "Adobe Photoshop CC 2015"
open aFile
convert to profile "CGATS21_CRPC6 V2" intent absolute colorimetric with dithering
save current document in file newFilePath as TIFF with options {embed color profile:true, save layers:true, save spot colors:true} appending lowercase extension
close current document saving no
end tell
end repeat
end HPConvert