View Single Post
  #8  
Old 03-03-2007, 02:49 AM
thom thom is offline
Registered User
 
Join Date: May 2006
Location: Chicago, IL USA
Posts: 8
Has there been progress on remote shuffle?

Quote:
Originally Posted by dnanian View Post
Haven't been asked for "toggle shuffle" before, but I'll take a look a it for the future.

Thanks for the suggestions!
Dave,

I finally decided it could be done and I got around to doing it -- so I bought netTunes! Woohoo!

I am using QuickSilver to bind the key triggers to run different applescripts.

If netTunes is running, send the command there. If not, send it to iTunes:

Code:
tell application "Finder" to name of processes
if the result contains "netTunes" then
	tell application "netTunes"
		tell the connected server to next track
	end tell
else
	tell application "iTunes" to next track
end if
Soooooo... in celebration of my long-awaited purchase of netTunes... and of the fact that I finally got this thing working the way I wanted it to for the past two years (sheesh!) ... any possibility of toggling remote shuffle, and being able to ask what the current shuffle state is?

Thanks! -- TB
Reply With Quote