Are there some good examples of how to use the Yes/No/Ask words. can they be used somehow to cause save windows to select dont save? Can someone give an example script of using these reserved words?
Hi,
You can try this if you have AppleWorks:
tell application "AppleWorks 6"
launch
activate
make document at front with data "Here's some text." with properties ¬
{name:"New Doc", document kind:text document}
delay 2
quit saving no -- try yes and ask also
end tell
gl,