Re: tell Grog to glog
Re: tell Grog to glog
- Subject: Re: tell Grog to glog
- From: Gil Dawson <email@hidden>
- Date: Sun, 7 Jan 2007 18:03:10 -0800
That's perfect!
At 6:16 P -0600 1/7/07, Luther Fuller wrote:
tell application "Grog"
launch
glog("xxx")
end tell
A second execution while Grog is still running apparently does
nothing. This works exactly as I was looking for!
Thanks, Luther!
--Gil
At 6:16 P -0600 1/7/07, Luther Fuller wrote:
This thread didn't catch my interest until just now. The problem with
tell application "Grog"
glog("xxx")
end tell
is that you are telling the application "Grog" to run, which you don't want.
You want to open it without executing the run handler. You want to
write this ...
tell application "Grog"
launch
glog("xxx")
end tell
Or, you may also write ...
launch application "Grog"
tell application "Grog"
glog("xxx")
end tell
I was trying to find a script where I think I used this once, but no
luck. If my memory is correct, the command 'launch application ... '
allows you to use a full path to the application, which is nice if
the application you are launching is stored in the calling
application's bundle.
_______________________________________________
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/mailman//archives/applescript-users
This email sent to email@hidden
_______________________________________________
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/mailman//archives/applescript-users
This email sent to email@hidden