3rd party software to correctly sort iTunes?

I am sick of sending in an enhancement request almost every new itunes release to ask if there can be more flexibility and user choice in how to sort things in iTunes. What I mean is that "An Ocean Between Us" should go under "A" not "O" like Apple forces it to be. I would also like numbers to come first like it does in the rest of the world and like it did in the past in iTunes 7.something. So I'm reaching out now to ask if there is a 3rd party software that works with iTunes that can fix this purposefully instituted problem. I could go through evey single song/artist/album and do it manually but since I have a ton of songs that would take months and I'd surely miss a lot. I understand that Apple likes to try to reinvent the wheel everytime but reinventing the wheel with a hexagonal shape is idiotic and doesn't work like people want it to. I don't know of anyone who actually likes the sorting in iTunes, except for skipping over "The" at the beginning of titles. So is there a 3rd party program that works with iTunes that can do what I want, or am I stuck with this idiotic sorting for now?
Thanks!

sam5500 wrote:
I am sick of sending in an enhancement request almost every new itunes release to ask if there can be more flexibility and user choice in how to sort things in iTunes. What I mean is that "An Ocean Between Us" should go under "A" not "O" like Apple forces it to be.
So fix it in Sort fields.
-> http://www.macworld.com/article/1131514/sortingitunes.html

Similar Messages

  • How to determine if my Mac is running correctly without useing 3rd party software

    Is there a way to determine if my Mac is running correctly without involving the use of 3rd party software? Some kind of command line diagnostic?

    Why do you think it's not running correctly? Please let us know the symptoms you are experiencing, without any data how can we tell you what tool to use??

  • I've noticed that CDs I've loaded into iTunes library play back at 24/96.  Can these now be burned to a DVD without 3rd party software?

    I've noticed that CDs loaded into iTunes library play back at 24/96.  Can these now be burned to a DVD without 3rd party software?

    iTunes does not burn DVDs, so you will have to use third-party software regardless of the format of the tracks.
    Regards.

  • Need 3rd party software for iTunes to move CD's to new computer?

    Do you knof 3rd party software allowing me to move non-apple purchased music to a new computer

    Backup with this User Tip, restore the library to the new computer using the same tool, keep the backup up-to-date in future.
    Deauhorise the old computer if you no longer want to access protected content from it.
    tt2

  • HT1338 i have about 88,000 songs in my music library, some are duplicates. Does anyone know of any Apple Product or 3rd party software that will identify and remove duplicates.

    I have about 88,000 songs in my music library, some are duplicates. Does anyone know of any Apple Product or 3rd party software that will identify and remove duplicates.

    Backup your music to an external source before doing this, just in case you delete the originals by accident.
    iTunes will show you the duplicates.  But I recommend tagging their comments or another field once selecting them to ensure you don't accidentally delete both the original and duplicate.  You can always select all of them and change all their comment tags at once.  Once you've done that, stop showing duplications, and then sort by the comment field.  This will allow you to determine whether only the duplicates were shown in the show duplicates, or the originals.  If you see any without comments, then you can go ahead and delete the duplicates.

  • Automator - Loop through a text file and process data through a 3rd party software

    Just stumbled on Automator the other day (I am a mac n00b) and would like to automate the processing of a text file, line-by-line, using a third party tool.  I would like Automator to loop through the text file one line at a time, copy the string and keep as a variable.  Next, place the variable data (copied string) into the text field of the 3rd party software for processing.  Once the processing is complete, I would like Automator to fetch the next line/string for processing.  I see items like "copy from clipboard" and  "variables" within the menu but I am not finding much documentation on how to utilizle this tool.  Just hear how potentially powerful it is. 
    The 3rd party software is not a brand name, just something made for me to process text.  I may have to use mouse clicks or tabs + [return] to navigate with Automator.  A term I heard on Bn Walldie's itunes video series was "scriptable software" for which I don't think this 3rd party app would be. 
    Kind regards,
    jw

    Good news and bad news...
    The good news is that it should be entirely possible to automate your workflow.
    The bad news is that it will be a nightmare to implement via Automator, if it's even possible.
    Automator is, essentially a pretty interface on top of AppleScript/Apple Events, and with the pretty interface comes a certain stranglehold on features. Knowing how to boil rice might make you a cook, but understanding flavor profiles and ingredient combinations can make you a chef, and it's the same with AppleScript and Automator. Automator's good at getting you from points A to B but if there are any bumps in the road (e.g. the application you're using isn't scriptable) then it falls apart.
    What I'm getting at is that your requirements are pretty simple to implement in AppleScript because you can get 'under the hood' and do exactly what you want, as opposed to Automator's restricted interface.
    The tricky part is that if no one else can see this app it's going to be hard to tell you what to do.
    I can give you the basics on reading a file and iterating through the lines of text in it, and I can show you how to 'type' text in any given application, but it may be up to you to put the pieces together.
    Here's one way of reading a file and working through each line of text:
    -- ask the user for a file:
    set theFile to (choose file)
    -- read the file contents:
    set theFileContents to (read file theFile)
    -- break out the lines/paragraphs of text:
    set theLines to paragraphs of theFileContents
    -- now iterate through those lines, one by one:
    repeat with eachLine in theLines
      -- code to perform for eachLine goes here
    end repeat
    Once you have a line of text (eachLine in the above example) you can 'type' that into another application via something like:
    tell application "AppName" to activate
    tell application "System Events"
              tell process "AppName"
      keystroke eachLine
              end tell
    end tell
    Here the AppleScript is activating the application and using System Events to emulate typing the contents of the eachLine variable into the process. Put this inside your repeat loop and you're almost there.

  • Issues with Form printing using a 3rd party software!!!!!!!!!!!!!!!11

    Hi All,
    We are printing our month end AR statements using Xerox DP100 printers. We are using a SAP Script as the layout form. Everything works perfectly alright when a direct print is issued to the printer. But the scenario here is the statements are sent to a 3rd party software so that the statements can be saved in their repository and made available to be viewed and printed whenever necessary. Now the issue is when this 3rd Party Software(TPS) reads the SAP generated PCL from its report store on the unix host and generates a PDF File that it presents to the web client user for (re)printing via his/her PC it appears that the TPS or Websphere or Adobe is performing a font substituion - replacing the Univers font(used in R/3) which is not loaded on the unix host with a different font(with different sizing and/or behavior).
    As a result the horizontal and vertical positioning generated by SAP(which is correct for the Univers font) is 'wrong' for the substituted font. The fixed size fields print OK but gradually move to the right. The varying size amount columns do not align correctly and fall off the right side of the page.
    Can anyone give me pointers on what can be done to arrest this error.
    Does the font need to be loaded on the unix host or the font used in the form be changed?
    Regards,
    Karthik

    Karthik,
              Sap script behaves differently for different printers. You will have to change margins when you change your printer/software accordingly.

  • How do I transfer photo files from desktop to ipad without 3rd party software?

    how do I transfer photo and music files from my laptop to ipad2 without purchasing a 3rd party software?

    You can use iTunes which is free (http://www.apple.com/itunes) - and that is the only way to sync music from a computer to the iPad
    Syncing photos via iTunes : http://support.apple.com/kb/HT4236 . You need to sync all photos that you want on the iPad together in one go, as only the most recent remains on the iPad - not including photos in a subsequent sync is how you delete them from the iPad

  • Why does Adobe install 3rd party software with PE 10 without asking?

    I purchased Photoshop Elements and Priemere Elements 10 together. During installation Adobe installed SmartSound Sonicfire Pro 5 on my computer. The installation did not ask if I wanted to install this software and there was no option to not install it. I am the only one who installs applications on my computer so what gives Adobe the right to decide what to install for me. Sonicfire Pro 5 is unwanted by me and it pains me greatly that software was installed on my computer without my consent. Besides it takes up 30GB of disk space. Yes I can uninstall it and I will but it should not have been installed in the first place. I bought Photoshop Elements 10 and Premiere Elements 10 because I was happy with my purchase of Photoshop Elements 6 and Premiere Elements 4 and wanted to have newer versions but now I am very unhappy. I will never buy a Adobe product or suggest Adobe products to anyone ever again. The only thing that would change my mind would be if Adobes next version did not contain any 3rd party software or if it did one should be given a choice during installation as to install it or not and Adobe should give me a free version to replace the one I have. As those two things are unlikely to happen I will continue to never buy any Adobe software or suggest to anyone to buy Adobe products and faithfully watch the stock market as Adobe stocks continue to decline. Guess what I do for a living!

    I did not answer you question, because I have no answer. That was why I recommended contacting Adobe. Though, at times, it might not seem like it, but they do listen to their customers. They collect tons of data, and try to prioritize things, based on that input. This is for Feature Requests, or just comments on how one likes, or does not like, the software.
    In very general terms, I find Adobe products to be very benign, and especially to many other companies' software.
    Over the decades, I only recall a few instances, where something was installed, without my input, at some level. Back about PS CS, there were some NIK Filters that were installed, and a few of them were "trials," which I am not keen on. SmartSound would be another example, except that I would want it, regardless (and probably only complain, if it was missing).
    One of the biggest rubs that I had with Pinnacle Studio was that even if one bought their biggest, most expensive package, a ton of Effects and Transitions were loaded as trials. To get all of those, one had to spend about US $400, above the price of the NLE. Not sure if that is still the case, as I switched to AVID Liquid, about they time they bought Pinnacle, and have not seen Pinnacle Studio in many years. When I moved from Liquid, to PrPro, and the CS2 Production Studio, I never looked back at AVID/Pinnacle. Now, CS2 Production Studio came with about 8 programs, and then a ton of "Goodies." I would have loved to have the Goodies as options in the full suite installation. As it was, I had to do the main, muli-program install, and then run installation routines for maybe 30 other plug-ins, add-ons and stand-alones.
    No, like you, I refuse to update my iTunes, as so much "other stuff" gets installed, and then I have to clean it out. You are not alone, except that we see SmartSound from different sides. Though I understand your not wanting anything, but the program, I view that as a necessity.
    My suggestion to Adobe would be to include that as a separate, user-selectable install, though I have never heard of anyone complaining, unless SmartSound did not work for them.
    I understand personal principles, and try to adhere to my own, but before you pass on SmartSound, I beg you to try it out. That will not ameliorate the need for Adobe to let the user decide what is/is not installed, but with a few sessions, you might change your mind about the program, itself.
    Do let Adobe know how you feel, and perhaps SmartSound will become an additional installation, like the additional Functional Content.
    Good luck,
    Hunt

  • Trouble getting java install wizard to work with 3rd party software

    Hi,
    I just installed Java 2 SDK version 1.4.2 under Solaris 8. The installation appears to be fine. I changed
    the links and PATH to make sure I'm pointing to the correct version. I am trying to install a 3rd party software called Powerchute Network Shutdown by APC, to be able to shut down our servers remotely, that are attached to our APC UPS. I get these error messages from the software:
    starting the wizard
    Exception in main calss "JExpressLoader"
    java wizard not started properly
    unable to start the install wizard
    Tech support at APC has been unable to help me. I am wondering if someone can tell me how to verify my java wizard is installed correctly. (I don't even know what a java wizard is by the way, so hopefully
    this question makes some sense to someone).
    Thanks.
    -Trish

    You need Xwindow System in your sun.

  • Link between 3rd party software and SAP

    Our company uses a 3rd party software for its payroll processing.  At the end of every 2 weeks, we receive an Excel file that the clerk sorts and uploads into SAP using LSMW.
    The Director of Finance thinks that this process can be achieved much quicker/faster/more efficiently, and he wanted to know if we can directly establish a link between the 3rd party payroll software and SAP. 
    Any thoughts on how this can be established?  Do I have to write a BAPI functional specification for this and work with the ABAP team?
    Thanks in advance for all your help.
    Regards,
    Vijay.

    Hi Vijay,
    Through BAPI / BDC / Idoc you can achive this requirement.
    Ex:
    1 - Create Landing Table in R/3
    2 - Pull Data from Leagacy to SAP Landing Table
    3 - From Landing Table you can post to SAP
    http://www.sap-img.com/general/what-are-the-methods-to-migrate-data-from-a-legacy-system-to-sap.htm
    http://saphrexpert.blogspot.com/2008/11/batch-data-communication-bdc-in-sap-r3.html
    Regards
    Viswa

  • I have a PVR which supports DLNA connected to my home network.  I want to access files on my MacBook from the PVR.  I understand that my MacBook doesn't support DLNA. Is there any 3rd party  software that I can install on my MacBook to provide DLNA?

    Hi,
    Can anyone help me please.
    I have a Personal Video Recorder (Humax HDR-1010S), which supports DLNA, connected to my home network via Wi-Fi. 
    I want to play music from iTunes and view photos from iPhoto from my MacBook (which is also connected to the home network) via the PVR / TV / Home Cinema sound system.  I understand that my MacBook (running OS X Mavericks) doesn't support DLNA server.
    Is there any 3rd party  software that I can install on my MacBook to provide DLNA server?
    Thanks,

    My recollection is that the iPhoto library has some fairly robust protections to prevent inadvertent or even deliberate changes being made that might have unwanted consequences. I'll take alook at my setup and let you know if I can see anything that might help you. Even if you get Serviio to "see" the iPhoto library, it almost ceratinly won't show the album structure and names. What I did is to export each iPhoto album to a standard folder with the appropriate folder name. These I keep on an external backup disc and Serviio can see these without trouble.

  • Permanently deleting iPhone text messages... impossible without 3rd party software?

    Am I correct in assuming there is currently NO possible way to permanently delete iPhone text messages and attachments unless you without either A. using 3rd party software that costs loads of money, or B. completely wiping your phone? This is seriously not available on these phones with all the other advanced features and tech?
    It saves gigs of txt messages and attachments permanently that takes up all of the space on your phone... I just have a hard time believing this issue hasn't been addressed....

    If the amount of storage for your Messages is not decreasing when you delete some (or all), then you need to try resetting your device to see if it will clear it up. I just went to my device and checked the amount of storage being used by Messages (13 MB). Then I deleted the 6 messages I had, and went back to check the Usage. It is now 3 MB.
    To reset your device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Slide to Unlock screen displays, check your usage again.
    Cheers,
    GB

  • Backup and synching with a Windows Server, what 3rd party software do I need.

    I have a Macbook Air.  We just got a new Server, a Dell PowerEdge T420 running Windows Small Business Server 2011 CAL Suite.
    I am told my Macbook Air will not Snych to backup files from a defined folder (like My Documents) and e-mail in Outlook.  Mac's can't do that. 
    I don't believe that is true.  Can anyone give me direction.  Is there some 3rd party software that allows Mac to do this?

    Hello Charlene,
    And welcome to Apple Discussions!
    There are several ways you can pull the music off your iPod and onto iTunes. The first link below provides step-by-step instructions for the direct method if you have a PC as well as a few third party applications (for both the Mac and PC) if you choose to go that route instead. You can also do a simple Google search for "copy music from iPod to computer" and you should receive a number of sites that can help you out.
    Just make sure that when you have your iPod plugged into your computer, that you don't hit "Erase and Sync" before completing the task of copying your music over.
    Also, if you have any purchased music, you will probably have to re-authorize your computer by heading to the Store drop down menu and choosing "Authorize computer."
    [5 Ways to Copy Music OFF your iPod and onto iTunes|http://www.metaphoriclabs.com/articles/5-ways-to-copy-music-off-your-ipo d-windows-mac-os-x>
    Here are a few more helpful sites.
    [Copying Content from your iPod to your Computer - The Definitive Guide|http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipo d-to-computer]
    Or
    [How to copy songs your iPod to your PC|http://lifehacker.com/software/ipod/how-to-copy-songs-from-your-ipod-to-your -pc-105256.php]
    Also, here is an article for the direct method that is for both Windows Vista and XP.
    http://ipodtips-tricks.blogspot.com/2008/10/howto-transfer-music-from-ipodto-itu nes.html
    Hope this helps.
    B-rock

  • 3rd party software for new computer

    My old computer is no longer available. I have a new computer that I need to download iTunes onto. The problem is that I need some 3rd party software to be able to sync the 2500 songs from my 80GB video ipod to the new computer. I don't really want to pay for this software. Any suggestions on free software that is reliable to download? Thanks.

    You can read reviews and comparisons of some of the utilities here:
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers

Maybe you are looking for

  • 3rd Gen Ipod Will Not Charge on Wall Charger

    I have a 3rd Generation non- click-wheel Ipod. Stock Cords Never opened up Dock No way of charging it on my computer (usb 1.1 and 4 pin firewire) I recently bought a wall charger, and I plug it in, and nothing happens. I am really anxious to use my i

  • Export a still image

    What version of Premier is this for?  I cannot find the camera button anywhere.

  • Touch Screen Not Responding

    I left my ipod charging over night (did not sync), and when I grabbed it this morning the touch screen was unresponsive and not working. I tried doing the power and volume down reset, but nothing changed. All the buttons work fine, but without a work

  • How to set array length correctly in this case

      class RunJavaCode implements ActionListener{     public void actionPerformed(ActionEvent e){       try{         Process proc=Runtime.getRuntime().exec("java javaapp");         InputStream input=proc.getInputStream();         byte[] b=new byte[3000]

  • USB Camera - Works in Photobooth - Need help in iChat

    I have an iSight at home, and I want to occasionally video chat with my wife and new child at home. I have an EyeToy Camera from the PS2, and it works on Leopard with Photobooth - but it's not being detected in iChat. Any tips on how I can make it wo