Re: Application process whose creator type?
Re: Application process whose creator type?
- Subject: Re: Application process whose creator type?
- From: Steve Roy <email@hidden>
- Date: Mon, 31 Mar 2003 16:29:28 -0500
email@hidden (Barbara Mueller) wrote:
>
tell application "Finder"
>
set theApp to name of (application processes whose creator type is
>
"BOBO") as string
>
end tell
It works for me, but maybe the application has to be running for it to qualify
as a 'process'. I usually use the 'application file id' construct instead.
tell application "Finder"
set theApp to application file id "BOBO" as string
end tell
tell application theApp
activate
-- do something
end
Steve
--
Steve Roy <email@hidden>
Personal homepage: <
http://homepage.mac.com/sroy>
Projects homepage: <
http://www.roydesign.net>
_______________________________________________
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.