Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

itunes 11 "go to current song" not working?

New layout in "albums" is cool. However I want to let iTunes shuffle my library while I'm working with other things, and I expect iTunes should "go to current song" to display the album song list (and artwork) in which it's playing.


User uploaded file

Now I have to press "command-L" to do that for each song, very annoying and unproductive.


Any things can do so that iTunes 11 will auto switch the display to the "current song"?

iTunes 11-OTHER, OS X Mountain Lion (10.8.2)

Posted on Nov 30, 2012 1:22 AM

Reply
Question marked as Best reply

Posted on Nov 30, 2012 4:25 AM

Just pause the song that is playing, and then click play. After that, iTunes will keep showing the song currently playing, even when you select a song manually.

49 replies

Dec 1, 2012 12:48 AM in response to HaniKazmi

Thanks HaniKazmi!


I created another AppleScript based on yours; if you run this script instead of iTunes, the script will start iTunes and start displaying the current tracks.


on run global oldTrackID set oldTrackID to 0 tell application "iTunes" repeat if player state is playing then set trackID to the current track if not trackID = oldTrackID then --Is this a new song? set oldTrackID to trackID reveal trackID end if end if end repeat end tell end run


Or, as a download.


To make it complete, you can put the script in the Applications folder and copy iTunes' icon to the script ;-)



A script starting when iTunes starts would be better, but then you would have to have another script running all the time checking whether iTunes is started or not..

Dec 1, 2012 2:30 AM in response to HaniKazmi

Thanks for posting this fix but it doesn't work for me. All it does is launch an Applescript called Test. I placed it in the iTunes scripts folder, though.


Anyway I find this bug very annoying. I don't care much for all the new features in version 11, but I can live with them as long as the basics work! Same with the new Remote app for iPhone, you can't rate the songs anymore!


So I sent feedback to Apple via the "Provide iTunes feedback" menu item :


"

The "go to current song" command doesn't work in iTunes 11, be it the menu item or the keyboard shortcut cmd-L.


Check the Apple discussions it filled with complaints about it.


Just so you know iTunes 11 is not available from the "What iTunes version are you running?" drop-down menu below.


Guys, get on top of things, what do you think Steve thinks of you now? 🙂

"

Dec 1, 2012 6:43 AM in response to MRG13

Thanks MRG13~


How to make it work for me:

- Open AppleScrit editor

- Copy the script

- Save as "application" to Application Folder

- From Application folder, drag it into dock


Then double-click the script icon in the dock, iTunes will start but in background. I have to click the iTunes icon in dock once to put it into foreground.


Thereafter when I play a song in grid view, the album details finally catches on what it's playing.


Hope Apple will fix this bug in the next maintenance release.




ps: In real life I'm a Unix admin but not touched Mac scripting (AppleScript, automounter etc) but this trigged my interest in learning them ;-)

Dec 1, 2012 7:46 AM in response to hkchip

One more version.

  • It'll use far less processing power (0.5%, compared to 70% before)
  • It'll start up iTunes and bring it to the front when first run
  • Added the icon


Code:

on run global oldTrackID set oldTrackID to 0 tell application "iTunes" activate repeat if player state is playing then set trackID to the current track if not trackID = oldTrackID then --Is this a new song? set oldTrackID to trackID reveal trackID end if end if delay 0.6 end repeat end tell end run



and download:


http://www.mediafire.com/?72h4itb2ad3bk7x

Dec 8, 2012 2:26 AM in response to hkchip

OK I just found this which kinda helps although not quite the same as originally.


When in a playlist grid view and busy with random play and your first song is playing, click on the small album art at the top where the title is showing. This will show the album art larger on top of everything else - and this will update each time a new song plays. It is also like a mini player from where you can skip songs etc.

Dec 8, 2012 3:37 AM in response to hkchip

I would go CRAZY if iTunes kept hopping around every time a new song started playing !!

The whole point of the CMD-L is so that, if you want to, you can ask iTunes to take you the current song.

I've tried out every variation I can think of and CMD-L works.


If I start a song in a PLAYLIST and then go to ANY other Pane, CMD-L will take me back to the actual Playlist with current song highlighted.

If I start a song in SONGS, ALBUMS or ARTISTS, then, in whichever pane I move to, CMD-L will take me to the current song IN THAT PANE.


The only "exception" I can find is this:

If I'm in the SONGS pane with the COLUMN BROWSER enabled and I start a song, if I then select another Genre, Artist, (or whatever) in the Column Browser pane, CMD-L in the SONGS pane cannot "see" the current song and nothing happens. BUT, switch to any of the other panes and CMD-L finds the current song. Is this a fault ? Should CMD-L in this case deselect my choices in the Column Browser panes, and select the ALL defaults so as to be able to show the current song. Hmmmmm. Tricky, but I don't think so. Maybe an alert asking if it should ? That would be fair.


In summary. If you guys want your iTunes windows hopping around every time a new songs starts playing, well implement one of those scripts that do that. But I VERY CERTAINLY DON'T. CMD-L works as intended, and works perfectly.

itunes 11 "go to current song" not working?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.