CMYK to RGB conversion without 3rd party software?
Thanks!
QS2002 933 - Soon to be Macbook 2.0, Mac OS X (10.4)
QS2002 933 - Soon to be Macbook 2.0, Mac OS X (10.4)
using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application "Mail"
set numberOfMessages to count theMessages
repeat with eachMessage in theMessages
set theSubject to subject of eachMessage
try
set nameOfAttachment to the name of the first mail attachment of eachMessage
set filename to "Macintosh HD:Users:parr:Desktop:Alpha Images:•From Brett:" & nameOfAttachment
save first mail attachment of eachMessage in filename
(*set the text item delimiters of AppleScript to {"."}
tell application "Finder"
set theFile to (filename as string)
set theName to the name of file filename
set theName to (text item 1 of theName)
end tell*)
tell application "GraphicConverter"
open {alias filename}
save window 1
close window 1
quit
end tell
tell application "Automator Launcher"
open "Macintosh HD:Users:parr:Library:Workflows:Alpha Convert.workflow"
end tell
end try
end repeat
end tell
end perform mail action with messages
end using terms from
CMYK to RGB conversion without 3rd party software?