Re: Saving a GraphicConverter document
Re: Saving a GraphicConverter document
- Subject: Re: Saving a GraphicConverter document
- From: Shane Stanley <email@hidden>
- Date: Tue, 29 May 2001 10:22:10 +1000
On 29/5/01 9:31 AM +1000, Jean-Marie Hoornaert, email@hidden, wrote:
>
I want to save a GraphicConverter document with a choosed name in a choosed
>
folder.
>
>
I have write this script :
>
>
tell application "GraphicConverter PPC"
>
set windooz to new image from clipboard --ok
>
set name of window 1 to "abc" -- ok
>
-- make new file at -- not ok
>
-- save windooz in "xyz" as "JPEG" -- not ok
>
end tell
>
>
Who can gif me a tip ?
Try this:
tell application "GraphicConverter PPC"
activate
set windooz to new image from clipboard
set image bit depth of windooz to 32
set JPEG quality of windooz to 50
save windooz in "Macintosh HD:xyz" as JPEG
--close window 1 saving no
end tell
--
Shane Stanley, email@hidden