Re: AS asking for application on every occasion
Re: AS asking for application on every occasion
- Subject: Re: AS asking for application on every occasion
- From: Walter Ian Kaye <email@hidden>
- Date: Thu, 8 Jul 2004 15:27:55 -0700
At 05:47p -0400 07/08/2004, Thierry Lavallie didst inscribe upon an
electronic papyrus:
Hi Bill,
I kind of get what you mean, but can't apply it.
tell application "Finder"
set graphicConverterPath to application file id "GKON" as alias
end tell
How do I call Graphic Converter after that?
This does not seem to work.
Tell graphicConverterPath
Activate
<...>
End Tell
Er, I got confused because he wrote "Path" but it's not a string.
Change to string:
tell application "Finder"
set graphicConverterPath to application file id "GKON" as string
end tell
tell application graphicConverterPath
activate
end tell
...but you may need a Using Terms From block as well...
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.