Estoy usando AppleScript para procesar una carpeta de imágenes TIFF que deben convertirse a un perfil CMYK específico en Photoshop. La secuencia de comandos primero solicita una carpeta que contiene las imágenes y luego solicita una ubicación de la carpeta de salida. Sin embargo, recibo el siguiente error al ejecutar el script:
Adobe Photoshop CC 2015 recibió un error: no se puede obtener el documento actual.
Lo primero que intenté fue eliminar current
del comando de guardar. Parece que Photoshop está abriendo y guardando el (los) documento (s) después de hacer esto, sin embargo, los TIFF no están en la carpeta especificada en newFilePath
. No estoy seguro de cómo debería manejar esto, ya que se supone que debe procesar varios archivos. El script actual está abajo:
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