How do I make itunes 11 go back to playing my whole library after search

I just upgraded to iTunes 11. I'll search an artist just to find a song more quickly and double click on a song to play it. Then, I'll press x in the search box so it displays my library again, and in previous versions of iTunes after the song ended it would go back to shuffling through my whole library. In iTunes 11, however, it only plays songs by that artist unless I select another song directly from the library. Is there a setting I can change to make it shuffle my library after I've selected a song?

See Troubleshooting issues with iTunes for Windows updates, and note 1 in particular.
tt2

Similar Messages

  • My ipod nano 6 will only play one or two songs then I have to force the next song to play. It will start several songs before settling on one. This just started and I havent changed anything. How to I make it go back to playing songs continuously?

    My ipod nano 6 will only play one or two songs then I have to force the next song to play. It will then start several songs before settling on one. This just started and I havent changed anything. How to I make it go back to playing songs continuously?

    Then back it up and do a restore.  If that does not work and if you are still under warranty, call Apple tech support or take the iPod to your local Apple Store or an AASP.
    iPod Tutorials
    iPod Manuals
    iTunes & iPod Hints & Tips

  • All songs in my iTunes library are listed twice. I have two copies of my library in two different locations. How do I make iTunes work with one copy of my library?

    All songs in my iTunes library are listed twice. I have two copies of my library in two different locations. How do I make iTunes work with one copy of my library?

    That is the way the iphone works.
    You need to copy everything from your backup copy of your computer.

  • So my Ipod Touch restored for some reason, and it doesnt show any of the apps i bought on iTunes. How do I make them come back?

    So my Ipod Touch restored for some reason, and it doesnt show any of the apps i bought on iTunes. How do I make them come back? Please Help

    Redownload them from the iTunes Store. It's free.
    (58292)

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • HT201272 When iTunes was upgraded to the lastest (11.0), many of of songs/music/audiobooks were deleted!  I tried syncing my phone to my computer to get them back, but many of those were deleted too!   How do I get my purchases back to play them???

    When iTunes was upgraded to the lastest (11.0), many of of songs/music/audiobooks were deleted!  I tried syncing my phone to my computer to get them back, but many of those were deleted too!   How do I get my purchases back to play them???
    It shows on iTunes SOME of my past purchases, but not all (looks like around 30-40% of purchases).    It shows on my apple id purchase history everything i have purchased; but in iTunes, some not all of these show up.    What does show up is kind of "greyed out", so NOTHING will actually play.   I have followed the steps in the iTunes support about how to redownload past purchases, but this dowsn't work, as the download button is also "greyed out". 
    I am extremly angry and upset about this issue.  Could someone please help / advise re how to fix????

    I'm hoping that this may be just a misunderstanding somewhere.
    Could you show an image showing these greyed out items?

  • I have a used mac computer. I want to sync and update my iphone. Currently itunes tells me that my iphone is connected to a different itunes account. How do I make itunes sync and update my phone without deleting all the current information on my phone?

    I have a used mac computer. I want to sync and update my iphone. Currently itunes tells me that my iphone is connected to a different itunes account and will sync, but delete everything from my phone. How do I make itunes sync and update my phone without deleting all the current information on my phone?

    Iphone will sync with one and only one cpomptuer at a time.  Syncing to another will erase the current content and replace with content from the new computer.  This is the design of the  iphone.
    It will erase the content when you sync.
    Why not update from the comptuer with which you normally sync?

  • ITunes is not recognizing my iPod so I cannot sync my music, but I can use home sharing and it will work... How do I make iTunes recognize my iPod touch?

    I've had my iPod touch for over a year now, and I haven't used it or iTunes in a while. I updated iOS on my iPod and updated to the newest version of iTunes earlier. Now that I have put some new music in my music library (not from iTunes), iTunes will not recognize my iPod, but if I turn on Home Sharing, it will sync to my iPod... Which would be fine, but I have to have Wi-Fi all the time for that to work, and sometimes I don't have Wi-Fi when I leave my house. So how do I make iTune recognize my iPod?

    Here:
    iOS: Device not recognized in iTunes for Windows
    or
    iOS: Device not recognized in iTunes for Mac OS X

  • When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    Other people have been having similar problems with songs over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting those tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • In snow leopard, 2 fingers to the left on the mouse went back to the previous page. In Lion, it opens the dashboard. How can i make firefox go back to previous page with two fingers left on the mouse??

    In snow leopard, 2 fingers to the left on the mouse went back to the previous page. In Lion, it opens the dashboard. How can i make firefox go back to previous page with two fingers left on the mouse??

    Hi,
    I don't know of a preference, but have you used ⌘-T in iCal?
    Best wishes
    John M

  • HT201303 I reset my iTunes Security Questions and when I go into the Apple Store to buy a TV Show it is still asking me the old security questions, not the new ones... How do I make iTunes ask me the new security questions?

    I reset my iTunes Security Questions and when I go into the Apple Store to buy a TV Show it is still asking me the old security questions, not the new ones... How do I make iTunes ask me the new security questions?

    Get prepared for some bad news, then contact iTS.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • How do I switch my iPad back to the US App Store after traveling?

    Good Morning,
    Just came back from Europe, my apps do not update properly in the U.S since I came back, used the apps store in France , how do I make them change back in U.S mode, thank you

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the region where you are located.
    9. Tap "Done".

  • How can I sync my ipod to the i tunes library in my computer? and how can I make sure each Cd I play automatically is saved onto the Ipod?

    How can I sync my ipod to the i tunes library in my computer? and how can I make sure each Cd I play is automatically saved onto the Ipod?
    My problem is that if I open I tunes, the Sync ipod option in the menue is grayed out, and so not available.
    This is starting to irritate me, so any help would be much appreciated.
    Thanks!

    I have the same problem. The Sync ipod option in the menue is grayed out, and so not available. HELP!

  • My laptop had to be reset to factory settings. prior to that i had all my itunes songs stored on a portable drive. how do i get itunes to recognize the drive as its library?

    my laptop had to be reset to factory settings. prior to that i had all my itunes songs stored on a portable drive. how do i get itunes to recognize the drive as its library?

    If the library file is on the external drive, hold <SHIFT> while launching iTunes.  When it prompts to select a library file or create a new one, point it to the location of the library file.
    If the library file was on the internal harddrive, easiest solution is to restore it from the backup.  If no backup exists, use File > Add Folder to library.  Also under Edit > Preferences > Advanced, change the library location unless you want iTunes to move the media to the internal drive.

  • How do I get iTunes to accept FLAC files into the library?

    If I want to use iTunes to catalog FLAC files (but NOT play them...as I use my logitech Squeezebox fior that) how do I get iTunes to accept FLAC files into the library?

    As polydorus notes, iTunes has the huge shortcoming of not handling FLAC. 
    There are plugins that allow iTunes to play FLAC, but everything I've seen says they are problematic. 
    A much better approach is to get a 3rd party conversion program such as Switch and convert the FLAC files to an iTunes-compatible format such as  AAC or AIFF.
    Put the converted files in your iTunes library, and keep the original FLACs on hand for when you are using a more capable player.

Maybe you are looking for

  • COST CENTER CHANGES FOR OPEN PO REQUIRE BEST APPROACH HOW TO DO IT

    Dear All, we are changing the cost center for open PO's kindly tell us the best approach how to do it for all open PO's line items for open PO's are 4000. we will totally block the old PO's and change the PO's with NO GR and IR immediately, but what

  • Problem in sending .doc file as an attachment.!

    Hi SDN, I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send a .doc file as an attachment i am filling the the table contents_hex with my internal table containing the data in hex format but the attachment coming to the SAP office inbox is not showi

  • Unable to print PDF file

    Hi All, I have a printer HP ML1005 installed on my Mac. Printing is fine for all office applications and other applications as well *EXCEPT for PDF file*. Before I can print a PDF file on this printer, but now for no reason I can't print - it stuck o

  • How do i update security software?

    how do i update security software?

  • Feature Request: External Monitor!

    Please make Front Row work on external monitors without having to change the primary monitor to the external. This is a major pain, and it must be common for lots of people to use their large displays as a secondary monitor, so I'm frankly baffled at