View Single Post
  #2  
Old March 6th, 2003, 06:03 PM
profx's Avatar
profx profx is offline
ill never 4get watsisname
 
Join Date: May 2001
Location: Auckland New Zealand
Posts: 386
Thanks: 0
Thanked 0 Times in 0 Posts
profx is on a distinguished road
here is the applescript
open script editor and paste this in, save it as iTunesWake.scpt (compiled script)

Code:
tell application "Finder"
	if processes contains {process "iTunes"} then
		-- iTunes is running
		tell application "iTunes"
			set vol to sound volume as number
			set sound volume to 0
			back track
			play
			repeat with i from 1 to vol
				set sound volume to i
				set i to i + 1
				delay 0.4
			end repeat
		end tell
	end if
end tell
__________________
| PowerBook G4 550 - 10.4 - 512Mb - 20Gb | 30Gb iPod Photo | 40x12x48 Fantom Drives CDRW (firewire) | Logitech Cordless Mouse MX700 | xBox with XBMC for movies and music in the lounge
Reply With Quote