Re: a quickie.
Re: a quickie.
- Subject: Re: a quickie.
- From: Doug Korns <email@hidden>
- Date: Thu, 13 Sep 2001 16:55:37 -0700
>
what is a script that would toggle the control strip on and off in OS 9?
>
This is a little brute force-ish, but the visual and net effect is what
you desire.
You could also use it to "refresh" the strip when Control Strip Modules
are added or deleted on the fly, without restarting.
--
tell application "Finder" to set ProcessList to the name of every process
if "Control Strip Extension" is in ProcessList then
tell application "Control Strip Extension" to quit
else
tell application "Control Strip Extension" to launch
end if
--
Doug Korns