Re: How to determine what application to launch?
Re: How to determine what application to launch?
- Subject: Re: How to determine what application to launch?
- From: Jolly Roger <email@hidden>
- Date: Tue, 25 Sep 2001 09:38:58 -0500
On 9/25/2001 2:41 AM, "Oleg Lodygensky" <email@hidden> wrote:
>
Hi,
>
is there any way to launch an application whatever its name is?
>
>
In my case, CodeWarrior 6.0 provides "CodeWarrior IDE 4.0" but name changes
>
to "CodeWarrior IDE 4.0.1.3" if user has installed patches; how to manage
>
this whithout any OsaXen?
You can open it by creator:
-- begin script
tell application "Finder" to set cwApp to application file id "CWIE" as text
using terms from application "CodeWarrior IDE 4.2.5"
tell application cwApp to launch
end using terms from
-- end script