Problem Sorting on Artist Name with numbers in title

I just upgraded to iTunes 7.7 and when I sort by artist, all the artists with numbers in their name (3 doors down, 10,000 Maniacs) appear after the "Z's" at the very end of my library, I want them before the "A's" as the first block of songs in my library, can't firgure out how to do that, it was always that way in my previous iTune versions, but with the upgrade it changed by itself
Can anyone help, I am sure this should be easy as I never had to do anything before to get this sorting behavior

This was changed in version 7.3.
See this -> iTunes 7.3: Changes in music sort order

Similar Messages

  • Problem sorting by artist name

    itunes 9 sort by artist is not consistent (e.g Alberta Hunter appears before Harry Allen). Why? And is this fixable?

    Because it sorts by the name in the artist column.
    Alberta comes before Harry.
    If you want *Harry Allen* filed under A and *Alberta Hunter* under H then put the names in the *Sort Artist* column as *Allen, Harry* and *Hunter, Alberta*.

  • How do I sort by artist name on I tunes

    how do I sort by artist name on I tunes

    Sorry Chris - that doesn't work unless you want the albums all listed. What I found was so simple.  In the view catagoryclick on "Show View Options"  That brings up a whole table of things. At the top it says sort by and if you click on the arrow it brings up however you want it sorted  - in my case by artist instead of by song.
    Thanks anyway

  • Problem sorting by Artist in grid view using Itunes 8

    I have a lot of albums that contain various artist and i set up the info in each with the correct artist name and "various artist" as the album artist. In itunes 8 when i use grid view and use show by artist it displays by album artist putting all the albums by "various artist" in one grid. It's correct in list and cover flow view. How can i set the grid view to display by the artist of the song and not the album. (ex. Soundtrack from the motion picture Tropic Thunder: Display "U Can't Touch This" under MC Hammer instead of Various Artist)

    Actually, the grid view should be using the Album Artist tag. When the Album Artist tag was added in iTunes 7.0, the intent was to allow users to properly tag songs based on the artist and any guest artists. For instance, on Luther Vandross’ album +Give Me The Reason+ Track 6, “There’s Nothing Better Than Love” is a duet. Therefore, while the Artist tag for the rest of the tracks should be ‘Luther Vandross’, the correct tag content for Track 6 is ‘Luther Vandross duet with Greory Hines’. Without having ‘Luther Vandross’ in all the Album Artist tags for all 9 album tracks, iTunes would split the album as if there are two albums of the same name by different artists.
    The other situation are producer-driven albums like Quincy Jones’ +The Dude+ or +Back On The Block+ . These are not compilations, as you described, because the songs were produced for the albums and Quincy Jones, although not a performer on any of the tracks, is the album artist. The exception is soundtracks that are compilations of songs typically produced for a given film. Like the situation you describe, each track has a different artist, so by having ‘Quincy Jones’ in the Album Artist tag for each track, iTunes maintains the integrity of the album and keeps the tracks properly grouped.
    (Now if Apple would only acknowledge and fix the persistent bug that does not carry these grouping and sorting features over to the user’s music folder when they have enabled “Keep iTunes Music folder organized” in iTunes’ preferences.)
    The situation you are specifically referencing is that of tagging compilations—albums that consist of tracks by various artists where there is no actual album artist—but you have used the Album Artist tag effectively forcing iTunes to see them as single artist albums. I also tag compilations—e.g., Various Artists (Hip Hop), Various Artists (Jazz), Various Artists (R&B), Various Artists (Soundtrack), etc.—, so I understand what you have done. Unfortunately, the fix for forcing the grid view to recognize individual artists in compilations may require you to clear out the Album Artist tag on all of your compilation album tracks forcing iTunes to revert to the Artist tag in place of the Album Artist tag.
    What I would suggest is clearing the Album Artist tag of just one compilation and seeing what happens. If the album appears under “Unknown Artist”, or some other generic listing, in the grid view then iTunes only recognizes the Album Artist tag and I am at a loss as to what you could do. If it works as you hope, then you can go ahead an clear out the Album Artist field on the rest of your compilation albums.
    The downside of clearing the Album Artist field is that iTunes will revert to its pre-version 7 habits and break up the albums; that is, a compilation with 12 tracks by 12 different artists will appear in the various views as 12 different albums albeit with the same name and cover art. To keep the tracks properly grouped in other views, you will need to mark all of the tracks from the compilation albums as “Part of a compilation” in the info dialog.

  • Sorting by Last Name with One Field

    In other words, how would I sort by last name when it's a single field that looks like FirstName_LastName?
    Ex:
    Alex S
    Derek A
    Bob Z
    to
    Derek A
    Alex S
    Bob Z
    I would suppose there is a way to make it read only the data after the space and sort it that way somehow?
    I have other problems but this is the biggest one I have at the moment.

    Dgn wrote:
    The thing is the I don't specifically remember hearing this in class and it doesn't appear in my book unless it goes by some other name.
    I'm dealing with a multi class program if that has any relevance.
    And I'm supposed to sort the names into a alphabetical last name format.Are you supposed to use your own sorting alogrithm or are you supposed to use Java's built in sorting algorithms and API?

  • Help Sorting array of strings with numbers in them

    Hello I need to sort an array of Strings of numbers. The order is not what I want it to be. instead of 1, 5, 20 it will go 1, 20, 5.
    I did a google search for this and found some code that could fix this. The only problem is I tried using it as a method in my program and am getting a compile-time error that I'm not sure how to fix.
    C:\Documents and Settings\Owner\Desktop\stringcompare.java:18: '(' or '[' expected
                new Comparator<String>()
                                    ^I'm not sure what to do here. Any help would appreciated.

    import java.io.*;
    class MyProgram{
    //This is my old bubble sort method which screws up with numbers
    public static String[] sort( String[] points)
              boolean keepGoing = true;
              while(keepGoing == true){
                   keepGoing = false;
                   for(int i = 0; i < points.length - 1; i ++)
                        if(points.compareToIgnoreCase(points[i + 1]) < 0)
                             String temp = points[i];
                             points[i] = points[i + 1];
                             points[i + 1] = temp;
                             keepGoing = true;
              return points;
    //This method reads a pre-existing text file
    public static String[] readPoints() throws IOException
              FileReader file = new FileReader("points.txt");     
              BufferedReader in = new BufferedReader(file);
              String temp;                
              String[] list = new String[100];     
              int i = 0;
              while (i < list.length)                    
                   temp = in.readLine();
                   if (temp != null)
                        list[i] = temp;                    
                   else
                        list[i] = " ";
                   i++;
              in.close();                              
              return list;
    //rewrites file after being sorted
         public static void savePoints(String[] points) throws IOException
              FileWriter file = new FileWriter("points.txt");
              BufferedWriter out = new BufferedWriter(file);
              int i = 0;
              while (i < points.length)          // while the end of file is not reached
                   out.write(points[i]) ;
                   out.newLine();
                   i++;
              out.flush();
              out.close();
    public static void main(String[]args) throws Exception{
    String[]points = new String [100];
    points = readPoints();
    points = sort(points);
    savePoints(points);
    for(int i = 0; i < points.length - 1; i++)
    System.out.println(points[i]);
    The problem is that it doesn't sort as I would like it and I'm not sure how to get the comparator to work properly.
    Edited by: myol on May 31, 2008 4:21 PM
    Edited by: myol on May 31, 2008 4:23 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Can't edit artist names with ''the''

    Hey. Some artists wrongly named on my walkman. Such as ''the misfits" or "the pixies". They should be Misfits and Pixies. So, when i try to edit artist name from "the Pixies" to "Pixies", it keeps being "the Pixies". Yeah i am sure i am tapping the save button. And i tried with any other artists and i couldn't delete ''the" from artist name.. Having a same issue even after hard reset.

    The info you are trying to edit is hard coded or embeded so you need to use a new app called EEmp3 found here
    For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.   Richard P. Feynman

  • "Current iTunes Song" - How can I make artist name first THEN song title?

    When I have "Current iTunes Song" selected, it shows the song title first and then the artist name. I would like it to be reversed so that people on my buddy list can easily see the artist instead of the song title.
    I have been able to locate a very easy solution to this in the past, but that has seemed to vanish into thin air and I cannot find it.

    You need this I Think.
    6:34 PM Monday; February 4, 2008

  • My phone does not show contact names for country and area code while having in coming calls. Although, I have endorsed the name with numbers. How do I the problem. My one is a iphone 3s device with updated os. Please text to help

    My iphone does not recognize saved contact number while having incoming calls due to country and area code as auto prefix. How do i fix the problem. How do i ensure that the phone recognize calls with and without the country and area code. Please text to help.

    1) Open the Phone and dial *228. This is a Verizon over-the-air programming number.
    2) When the system answer press 1 for "Program or activate your phone"
    3) Wait for the call to disconnect. You should get a prompt stating something like, "Settings updated."
    4) Open the Task Manager and kill the Phone, Message, and Contacts Applications
    5) Wait a few minutes (I waited 3 just to be extra safe)
    6) Open the Message App to verify the fix

  • ITunes 12 - Sort album with numbers in title by natural order

    Hi All
    Searched but cannot find a solution to this.
    Now I've got iTunes 12, I noticed that when I added a new album titled "Triple J Like A Version 10", it sorts this album at the beginning of the sequential list of albums. i.e.:
    Triple J Like A Version
    Triple J Like A Version 10
    Triple J Like A Version 2
    Triple J Like A Version 3
    etc
    It should appear after Triple J Like A Version 9.
    My other albums added on earlier versions of iTunes are fine. For example Triple J Hottest 100 Volume 10 comes after 9 & before 11 where it should be; Volume 20 comes after 19 & before 21.
    Is there any way to change the sort order to sort numbers in their natural order?
    Thanks
    Craig

    Pad out the sort values with leading zeros so the sort names become:
    Triple J Like A Version 02
    Triple J Like A Version 03
    Triple J Like A Version 09
    Triple J Like A Version 10
    tt2

  • Problems by combinate JSF-Names with JavaScript (de.dev.user)

    Hello again.
    I have i new problem.
    Overview:
    1. Situation
    2. Working code
    3. Problem (reason for new idea)
    4. New Idea
    5. Problem (please help me !!)
    [1]
    The situation. I have one inputText and one selectOneMenu.
    They are logicly combinated. Of this pair i have two.
    If the user enters a errorcode in the inputText-field, the matching entry of the selectOneMenu have to be selected.
    If the user select a entry of the selectOneMenu, the code have to be shown in the inputText.
    Example:
    inputText1 <-> selectOneMenu1
    inputText2 <-> selectOneMenu2
    [2]
    For the moment i have realised this code (it works !!):
    details.jsp:
    <h:panelGrid columns="3">
    <h:inputText binding="#{CbtdDetailsBean.itxtErrorCode1}" id="itxtErrorCode1" valueChangeListener="#{CbtdDetailsBean.itxtErrorCode1ValueChange}" onchange="submit()">
    </h:inputText>
    <h:selectOneMenu binding="#{CbtdDetailsBean.hsomErrorCode1}" id="hsomErrorCode1" valueChangeListener="#{CbtdDetailsBean.hsomErrorCode1ValueChange}" onchange="submit()" >
    <f:selectItems binding="#{CbtdDetailsBean.uisiErrorCode1}" id="uisiErrorCode1" />
    </h:selectOneMenu>
    <h:outputText value="#{lgs.txtErrorCode}" />
    <h:inputText binding="#{CbtdDetailsBean.itxtErrorCode2}" id="itxtErrorCode2" valueChangeListener="#{CbtdDetailsBean.itxtErrorCode2ValueChange}" onchange="submit()"  />
    <h:selectOneMenu binding="#{CbtdDetailsBean.hsomErrorCode2}" id="hsomErrorCode2" valueChangeListener="#{CbtdDetailsBean.hsomErrorCode2ValueChange}" onchange="submit()">
    <f:selectItems binding="#{CbtdDetailsBean.uisiErrorCode2}" id="uisiErrorCode2" />
    </h:selectOneMenu>
    </h:panelGrid>
    CbtdDetailsBean.java:
    private ArrayList getErrorCodeList()
      ArrayList errorCodeList = new ArrayList();
      errorCodeList.add(new SelectItem("1", "TestErrorCode1"));
      errorCodeList.add(new SelectItem("2", "TestErrorCode2"));
      errorCodeList.add(new SelectItem("3", "TestErrorCode3"));
      errorCodeList.add(new SelectItem("4", "TestErrorCode4"));
      errorCodeList.add(new SelectItem("5", "TestErrorCode5"));
      return errorCodeList;
    // Value Change Listener (same for 2. group)
    public void itxtErrorCode1ValueChange(ValueChangeEvent vce)
      this.hsomErrorCode1.setValue((String) vce.getNewValue());
    public void hsomErrorCode1ValueChange(ValueChangeEvent vce)
      this.itxtErrorCode1.setValue((String) vce.getNewValue());
    // Input Text ErrorCode 1 (same for 2. group)
    private HtmlInputText itxtErrorCode1 = new HtmlInputText();
    public HtmlInputText getItxtErrorCode1() { return itxtErrorCode1; }
    public void setItxtErrorCode1(HtmlInputText itxtErrorCode1) { this.itxtErrorCode1 = itxtErrorCode1; }
    // HtmlSelectOneMenu ErrorCode 1 (same for 2. group)
    private HtmlSelectOneMenu hsomErrorCode1 = new HtmlSelectOneMenu();
    public HtmlSelectOneMenu getHsomErrorCode1() { return hsomErrorCode1; }
    public void setHsomErrorCode1(HtmlSelectOneMenu hsomErrorCode1) { this.hsomErrorCode1 = hsomErrorCode1; }
    // UISelectItems (same for 2. group)
    private UISelectItems uisiErrorCode1 = new UISelectItems();
    public UISelectItems getUisiErrorCode1() { uisiErrorCode1.setValue(getErrorCodeList()); return uisiErrorCode1; }
    public void setUisiErrorCode1(UISelectItems uisiErrorCode1) { this.uisiErrorCode1 = uisiErrorCode1; }-------------------------------------------------------------------------------------------------
    [3]
    Problem:
    If the user changes the itxtErrorCode1-field, the hsomErrorCode1 will be updated by reload, but the hsomErrorCode1 also updates the itxtErrorCode1-field with the old value.
    The second group is also updated. the itxtErrorCode2 has the value of hsomErrorCode2 (= 1) after entering itxtErrorCode1.
    [4]
    My new idea, where i need your help:
    I think about a second way to update this fields. JavaScript !!
    If this would work, i do not need to refresh the page.
    The sourcecode i would like to user for this is implemented in the jsp-file:
    <f:verbatim>
    <script type="text/javascript">
    <!--
      function SetControlByValue(cControl,sValue)
            cControl.value=sValue;
       function toUpper(obj)
            obj.value = obj.value.toUpperCase();
        // alert("document.frmDeviceDetails.hsomErrorCode2 = "+document.frmDeviceDetails.hsomErrorCode2);
    -->
    </script>
    </f:verbatim>
    <h:inputText binding="#{CbtdDetailsBean.itxtErrorCode1}" id="itxtErrorCode1" onchange="toUpper(this);SetControlByValue(document.frmDeviceDetails.hsomErrorCode1,this.value);" />
    [5]
    The new problem:
    In the generated HTML-Code of itxtErrorCode1 and hsomErrorCode1 is:
    <input id="body:frmDeviceDetails:itxtErrorCode1" name="body:frmDeviceDetails:itxtErrorCode1" type="text" ... >
    <select id="body:frmDeviceDetails:hsomErrorCode1" name="body:frmDeviceDetails:hsomErrorCode1" ... >
    How can i reference this "name" to javascript?
    This Ideas does not work:
    document.frmDeviceDetails.hsomErrorCode1
    body:frmDeviceDetails:hsomErrorCode1
    document.body:frmDeviceDetails:hsomErrorCode1
    document.body.frmDeviceDetails.hsomErrorCode1
    document.body.frmDeviceDetails.body.frmDeviceDetails.hsomErrorCode1
    JavaScript seems to have a problem with ":". But this is part of the name!
    Any Ideas?
    p.s. please excuse my english, but i am from germany smile

    I have run into this same problem with javascript and the colon. I am not sure if the colon is a valid character for a javascript identifier (one would think the RI developers would have checked it out though!?!).
    Anyway, my workaround is to search through the Javascript DOM for the widget you want to obtain a reference to, using part of its id. After all, you know its id, you just can't use it as a javascript reference. In your Javascript code, do something like:
        var inputWidgets = document.getElementsByTagName("input");
        var targetInput;
        for(var i = 0; i < inputWidgets.length; i++)
           var inputId = inputWidgets.id;
    if(inputId.indexOf("yourInputId") != -1)
    targetInput = inputWidgets[i];
    break;
    It's a lot of effort to just get a reference to a form widget....but it works (I pasted in the code and changed it a bit, so it might not work as is, but at least it demonstrates the idea).

  • Sort by artists name

    maybe one of us can help me.
    I using Itunes 7.6 and wanna, that in the name of artist:
    first Figures
    second Letters, starting "A"
    how can do this, prefer step-by-step

    Have a look at this article in the Apple Knowledge Base and let us know if it brings you any combination of joy and/or satisfaction.

  • How to sort a character field with numbers and letters on the end

    I have an internal table with character field which has data like this after I sort it.  This is not what I expect from the sort.:
    13A
    15A
    29A
    30A
    31A
    33A
    123A
    125
    62 
    76 
    94A
    I expect this, which is sorted number first, then alpha.  Any ideas how to get this sort?:
    13A
    15A
    29A
    30A
    31A
    33A
    62 
    76 
    94A
    123A
    125

    Thanks for the suggestions.  After reading the suggestions and reviewing some other post threads, here's what I did to get the sort to work:
    Add a dash - to the end of any record that did not have an alphabet character at the end.  This way, all records have at least one non-numeric character at the end.  Then I overlayed zeros  '0000000'  over each record.  Then I sorted the table.  Afterwards, I removed the dashes and zeros.
    The long way around, but it worked for me.  Since the internal table is processed in memory, it doesn't add much overhead to the run time.

  • Photos with numbers and titles.

    I have transferred folders of photos from my PC to my iPad and found that the order of the images the Album has changed despite the fact that they were numbered in the original file folder.   Also on iPad Albums they loose any titles.
    What I would really like in a photo App is one that maintains the order of the images whether being viewed as a 'SlideShow' or just viewed one at a time. In addition, when the photos are being displayed in full screen I would like to be able, by the touch of a finger, be able to see the title of the photo overlaid at the bottom of the screen, and equally as simply, removed from the screen when read.
    My questions are
         Will iPhoto do this for me?  I don't really need all the image processing that iPhoto offers because I do all that work on my PC before downloading images to my iPad.
         Does anyone know of an App. that does?        

    The iPhoto for iOS forum is here
    https://discussions.apple.com/community/app_store/iphoto_for_ios
    Regards
    TD

  • About 'Sort Artist' name

    Hi
    i am trying to find out,
    as some of my songs' "sort artist" is grey in color (instead of black),
    and if the "sort artist" content word is grey in color, it will automatically sort songs with same ARTIST name to have the same "sort artist" name.
    EG: if the ARTIST name is The Pussycat Dolls, and the "sort artist" name is Pussycat Dolls (grey in color instead of black), all songs ARTIST name with 'The Pussycat Dolls' will automatically change the "sort artist" name to Pussycat Dolls.
    EG: if the ARTIST name is The Pussycat Dolls, and the "sort artist" name is Pussycat Dolls (black in color), all songs ARTIST name with 'The Pussycat Dolls' will not automatically change the "sort artist" name to Pussycat Dolls.
    May I know how to set the "sort artist" name to become grey color so that it will automatically change the "sort artist" name for all ARTIST with the same name?
    Anyone's soonest help will be appreciated.
    Thank you
    Grace Tang

    Further to my question, when I plug in and select my iPad 2 I don't have the same problem.  I have restored the settings on my iPod Touch and updated both iTunes and iPod Touch software and restarted my iPod touch.  Nothing has made any difference.

Maybe you are looking for