Copy link to clipboard
Copied
Hi there,
I want to make a color conversion with Applescript. But my script is doing nothing. Where is my error?
tell application "Adobe Photoshop CC 2015.5"
convert to profile "Adobe RGB (1998)" intent absolute colorimetric with dithering without blackpoint compensation
end tell
Hi,
the following works for me:
tell application "Adobe Photoshop CC 2015.5"
set theDocRef to the current document
convert theDocRef to profile "Adobe RGB (1998)" intent absolute colorimetric with dithering without blackpoint compensation
end tell
Cheers,
Davide Barranca
Copy link to clipboard
Copied
Hi,
the following works for me:
tell application "Adobe Photoshop CC 2015.5"
set theDocRef to the current document
convert theDocRef to profile "Adobe RGB (1998)" intent absolute colorimetric with dithering without blackpoint compensation
end tell
Cheers,
Davide Barranca
Copy link to clipboard
Copied
Thank You very much! 🙂 The missing document selection was the problem.