| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
That's perfect!
tell application "Grog"
launch
glog("xxx")
end tell
Thanks, Luther!
--Gil
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: http://lists.apple.com/mailman/options/applescript-users/email@hidden 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: http://lists.apple.com/mailman/options/applescript-users/email@hidden Archives: http://lists.apple.com/mailman//archives/applescript-users
| References: | |
| >RE: AS and Unicode characters (From: KOENIG Yvan <email@hidden>) | |
| >Re: AS and Unicode characters (From: "Mark J. Reed" <email@hidden>) | |
| >Re: AS and Unicode characters (From: KOENIG Yvan <email@hidden>) | |
| >tell Grog to glog (From: Gil Dawson <email@hidden>) | |
| >Re: tell Grog to glog (From: Axel Luttgens <email@hidden>) | |
| >Re: tell Grog to glog (From: Gil Dawson <email@hidden>) | |
| >Re: tell Grog to glog (From: Axel Luttgens <email@hidden>) | |
| >Re: tell Grog to glog (From: Gil Dawson <email@hidden>) | |
| >Re: tell Grog to glog (From: Luther Fuller <email@hidden>) |
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.