Re: (no subject)
Re: (no subject)
- Subject: Re: (no subject)
- From: JJ <email@hidden>
- Date: Fri, 06 Jul 2001 11:48:48 +0200
>
Message: 5
>
From: Sumith Meegama <email@hidden>
>
To: "'email@hidden'"
>
<email@hidden>
>
Date: Fri, 6 Jul 2001 14:03:17 +1200
>
Subject: (no subject)
>
>
Hi everyone,
>
>
Does anyone know how to save a Freehand document?
New document. The safest method: make the file using Finder, and then save
into that new file.
tell application "FreeHand 10"
set the_name to name of document 1
tell application "Finder" to set the_alias to ,
(make file with properties {name:the_name, creator type:"FH X", file
type:"AGD5"}) as alias
save document 1 in the_alias
end tell
Existent document:
tell application "FreeHand 10" to save document 1
JJ
* Don't ask me about FreeHand 9, because I don't understand it.