Re: testing for Classic and restarting
Re: testing for Classic and restarting
- Subject: Re: testing for Classic and restarting
- From: Dave Balderstone <email@hidden>
- Date: Tue, 02 Mar 2004 18:05:04 -0600
On 2-Mar-04, at 4:21 PM, email@hidden wrote:
How does an OSX AppleScript test if Classic is running, and if not,
restart
it?
This works here:
---
tell application "System Events"
set IsClassic to exists application process "Classic Support"
if IsClassic is false then
tell application "Classic Startup" to launch
end if
end tell
---
_______________________________________________
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.