Re: rotate jpeg lossless, wierd
Re: rotate jpeg lossless, wierd
- Subject: Re: rotate jpeg lossless, wierd
- From: kai <email@hidden>
- Date: Sun, 8 May 2005 03:46:16 +0100
On Sunday, May 8, 2005, at 01:51 am, Robert Poland wrote:
The following script appears to do nothing;
set fileToProcess to "iMac HD:Users:rpoland:Desktop:
hybrid_merge_1.jpg"
tell application "GraphicConverter"
activate
delay 2
open fileToProcess
delay 1
rotate jpeg lossless fileToProcess to angle 270
end tell
[snip]
The 'rotate jpeg lossless' command acts directly on the file, Robert -
so it's best not to attempt it with the file open. Try this instead:
-----------------
set fileToProcess to "iMac HD:Users:rpoland:Desktop: hybrid_merge_1.jpg"
tell application "GraphicConverter"
rotate jpeg lossless fileToProcess to angle 270
activate
open fileToProcess
end tell
-----------------
---
kai
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden