linking apps

T

tomuinjihon

Guest
Does anybody know how to link applications to open and close at the same time? I would like to have itunes and gimmesometunes (displays the current song) to open and close at the same time so that gimmesometunes doesn't waste memory when I'm not listening to music. Help?
 
Joined
May 22, 2005
Messages
2,159
Reaction score
67
Points
48
Location
Closer than you think.
Your Mac's Specs
Performa 6116 2GBSCSI 8MB OS 7.5.3
Let me ask you this,...

Do you use Dashboard? If you do than you must be aware of how much memory that eats up. If you don't, then I wouldn't worry about the memory that some 1mb helper app uses.
 
Joined
Jan 9, 2006
Messages
166
Reaction score
3
Points
18
Well okay, let me ask the same question, only I'll point out that I have disabled the dashboard.

Can it be done?
 
Joined
Sep 21, 2005
Messages
809
Reaction score
111
Points
43
Location
ohio
Your Mac's Specs
iBook G4 OSX Tiger
you could write an applescript to open all the programs you want to open at the same time:
Code:
tell application "name of first app" to activate
tell application "name of second app" to activate

save this as an app, then when you open it, all the apps you have listed will open

or if you want to be able to open and close you could use this:
Code:
display dialog "Open/Close" buttons {"Cancel", "Close", "Open"} default button 3
if the button returned of the result is "H-Drive" then
	tell application "name of first app" to activate
	tell application "name of second app" to activate
	
else
	tell application "name of first app" to quit
	tell application "name of second app" to quit
end if

there may be an easier way but i dont know how to do it
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top