Re: display message while script is running
Re: display message while script is running
- Subject: Re: display message while script is running
- From: peter boardman <email@hidden>
- Date: Thu, 2 Dec 2004 13:00:23 +0000
Jan-Bultereys <email@hidden> said on 2004-12-02, 13:27 (+0100 GMT):
>> Is there a way to display a message on the screen while
>> the script is running and disappear when it's done?
You could use something like Growl for notifications:
--
tell application "GrowlHelperApp"
notify with title "Script " description "started " & return & (current date) icon of application "Script Editor" with sticky
end tell
--
...
--
tell application "GrowlHelperApp"
notify with title "Script " description "finished " & return & (current date) icon of application "Script Editor" with sticky
end tell
--
You can't (yet) get them to disappear under script control, but perhaps you've just popped out for a walk when the script suddenly finished, so that might be a good thing... :-)
Pete
_______________________________________________
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