Re: Error -609
Re: Error -609
- Subject: Re: Error -609
- From: "Stockly, Ed" <email@hidden>
- Date: Fri, 08 Feb 2008 17:14:41 -0800
- Thread-topic: Error -609
>>Further to this, try looking at this site for definitions of error numbers:
http://developer.apple.com/documentation/AppleScript/Conceptual/AppleScriptL
angGuide/AppleScript.10a.html
http://docs.info.apple.com/article.html?artnum=9804
Both good resources, thanks.
Here's how to generate a -609 yourself.
----------
try
tell application "Finder"
quit
activate
end tell
on error errtext number errNumber
display dialog errtext & return & errNumber
end try
tell application "Finder" to activate
----------
And here's how not to generate a -609 error
----------
try
tell application "Finder"
quit
delay 1
activate
end tell
on error errtext number errNumber
display dialog errtext & return & errNumber
end try
tell application "Finder" to activate
----------
HTH,
ES
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden