Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

eroxx

macrumors 6502a
Original poster
Jul 27, 2010
801
1
I'm looking for a script/automator/some way to be able to look up an album review of the currently playing track .... ??
 
You might try something like this:

Code:
[COLOR="Blue"]tell application "iTunes"
	set x to album of current track as text
end tell
set the clipboard to x
tell application "Safari"
	activate
	open location "http://www.google.com/"
end tell
tell application "System Events"
	keystroke "v" using command down
	keystroke " review"
	keystroke return
end tell[/COLOR]

Be sure "Enable access for assistive devices" is turned on in System Preferences > Universal Access. Good luck.

Script tested using Mac OS 10.4.11 and iTunes 9.2.1
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.