Why can't I change the genre on the new iTunes

I wish to change the genre of a song on the new iTunes.  I right click on the song go to details, write in the genre and then click on OK and yet nothing changes.  So how can I effectively change the genre of a song?

I found out that in order to have iTunes accept changes, I must first go into Windows Explorer to the music file under properties, in the General tab, then uncheck in Attributes the read only box. Then iTunes accepts the changes.
Thank you and have a great day!

Similar Messages

  • Why can't I change file ownership in the Finder when logged in as root?

    Why can't I change file ownership in the Finder when logged in as root?
    I can change it in the Finder if logged in as admin or via the terminal as root.
    Xserve   Other OS  

    N8 Thomas wrote:
    I then went into my finder preference section and changed my "New finder window show" to my computer's name.  At that point I could view and find anything within it.  this part got the job done. 
    "You don't, they only appear in open file dialogs and in tool panels like in iMovie, iPhoto.
    To view your media, you open the app that you use to manage that type of media." this on the other hand was zero help
    What you did doesn't show the Media Browser. It just shows the folders where your media is stored. You may be correct that was all that cobacc wanted. 
    The Media Browser shows the actual media in thumbnails so that you can preview the media.
    However, neither requires any Sharing services to be enabled.

  • Why can't I change the genre in first three tracks of album

    Just purchased two (Classical) albums from the Apple Store. Both have six tracks and in both cases I am unable to change the genre on the first three tracks and the "Get info" screens on these tracks are greyed out. Anyone any ideas why this might be happening?

    Never mind, fixed it.

  • Why can't I change the content for some songs when I click the Get Info button?

    Why can't I change the content for some songs when I click the Get Info button?  The information on the song, artist, genre is grayed out and will not allow me to alter the information.

    Hi htechadmin,
    Revcevied your PM and noted all details, Many Thanks.
    Getting this addressed by the team, either they will reply to you, here, or they shall email Or Call you.
    Regards,
    LP

  • HT201210 Why can't I change the location of my device backups?

    Why can't I change the location of my device backups?
    iTunes seems to force me to use my c:\ drive as the destination for all backups. 
    Background: I have set up my c:\ drive only for programs - all data is stored on separate drives - including my iTunes library and all media. So, I can't skinny down the c:\ drive any more without uninstalling programs.
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    I deleted the partial iPad backup, moved all the Mobile Applications to another drive, emptied the recycle bin and tried again with my much smaller iPhone.  You guessed it: the io7 update hung and both of my devices are now paper weights.
    Which leaves me f*cked, anyone know how I can un-f myself? 

    SPURCHASE wrote:
    The issue is that my 10,000 rpm, 280 GB - C:\ drive is fast but small and is now FULL after I got about 1/2 way through a 128 GB backup of my ipad.  (Yes, all movies have been deleted off of the iPad to minimize the size of the backup.)
    iTunes movies are not part of an iDevice backup.
    Videos & photos you take with the camera (in the Camera roll) are part of the backup but those should be sync'd to the computer and removed from the camera roll.

  • How do I change the default programme to open pictures when downloading? Why can't I make it automatic? - the tick box is greyed out.ut

    How do I change the default programme to open pictures when downloading? It always proposes Windows Live Photo Gallery and I have to change it to Windows Photo Viewer every time. Why can't I make it automatic? - the tick box is greyed out.

    Thread discussing this issue here:
    http://discussions.apple.com/thread.jspa?messageID=1289317

  • Why can't I change the transparent color and font color in IOS 7?

    Who thought all this WHITE AND TRANSPARENT color looks appealing?
    Why can't I change the color of the folders and text?
    I already tried inverting the colors and then it washes out the photos I use as my wallpaper.
    I love everything, so far, except this transparent issue.

    That's very sad those colors can't be changed. They really look ugly.
    Thanks for responding.

  • TS3771 Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    It may be because of your settings. You can modify that setting in System Preferences > Trackpad. Another way of making right-click is to click the app icon while holding the Control key

  • Why can't I change the transaction isolation level?

    I was trying to change the transaction isolation level from an EJB. My source codes are shown as the follows:
    ======================================================
    /*********************** Database Routines *************************/
    private void makeConnection() {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = ( DataSource )ic.lookup( dbName );
    con = ds.getConnection();
    DatabaseMetaData dmd = con.getMetaData();
    show_supported_trans_levels( dmd );
    int status = con.getTransactionIsolation();
    System.out.print( "1. " );
    disp_tx_status( status );
    System.out.println( "con.isReadOnly() = " + con.isReadOnly() );
    con.setTransactionIsolation( Connection.TRANSACTION_SERIALIZABLE );
    System.out.print( "2. " );
    disp_tx_status( status );
    } catch( SQLException ex ) {
    System.err.println( "SQLException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    } catch( NamingException ex ) {
    System.err.println( "NamingException: " + ex.toString() );
    throw new EJBException("Unable to connect to database. " +
    ex.getMessage());
    private void disp_tx_status( int status )
    System.out.print( "Transaction Status: " );
    switch( status )
    case( Connection.TRANSACTION_READ_UNCOMMITTED ):
    System.out.println( "TRANSACTION_READ_UNCOMMITTED" );
    break;
    case( Connection.TRANSACTION_READ_COMMITTED ):
    System.out.println( "TRANSACTION_READ_COMMITTED" );
    break;
    case( Connection.TRANSACTION_REPEATABLE_READ ):
    System.out.println( "TRANSACTION_REPEATABLE_READ" );
    break;
    case( Connection.TRANSACTION_SERIALIZABLE ):
    System.out.println( "TRANSACTION_SERIALIZABLE" );
    break;
    case( Connection.TRANSACTION_NONE ):
    System.out.println( "TRANSACTION_NONE" );
    break;
    default:
    System.out.println( "UNKNOWN" );
    break;
    private void show_supported_trans_levels( DatabaseMetaData dmd ) throws SQLException
    System.out.println( "List of Supported Transaction Isolation Levels: " );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_UNCOMMITTED ) )
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_UNCOMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_READ_COMMITTED ) )
    System.out.println( "TRANSACTION_READ_COMMITTED is supported!" );
    else
    System.out.println( "TRANSACTION_READ_COMMITTED is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_REPEATABLE_READ ) )
    System.out.println( "TRANSACTION_REPEATABLE_READ is supported!" );
    else
    System.out.println( "TRANSACTION_REPEATABLE_READ is unsupported!" );
    if( dmd.supportsTransactionIsolationLevel( Connection.TRANSACTION_SERIALIZABLE ) )
    System.out.println( "TRANSACTION_SERIALIZABLE is supported!" );
    else
    System.out.println( "TRANSACTION_SERIALIZABLE is unsupported!" );
    =========================================================
    However, I encountered the following exception when running at the highlighted statement:
    ======================================================
    SQLException: java.sql.SQLException: Transaction manager errors. statement not allowed in XA Session.
    ======================================================
    To my surprise, the isolation level TRANSACTION_SERIALIZABLE is supported from the database vendor. So why can't I change the transaction isolation level?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • Why can't i change the setting at the security

    Why can't i change the setting at the security & privacy? After I switch to OS X Yosemite, i cant install some application. It says that I can install due unidentified developers. Can anyone help?

    You can change the setting, you may need to click the lock at the bottom of the preference pane. Be careful what you download and install, Gatekeeper is there to help you. OS X: About Gatekeeper - Apple Support

  • Why can't I change the transparent color in IOS 7?

    Who thought all this WHITE AND TRANSPARENT color looks appealing?
    Why can't I change the color of the folders and text?
    I already tried inverting the colors and then it washes out the photos I use as my wallpaper

    That's very sad those colors can't be changed. They really look ugly.
    Thanks for responding.

  • WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    HELP
    WHY can't i change the civility in itunes store always said that there is an error, WHY can't i change the civility in itunes store always said that there is an error

    try this
    http://support.apple.com/kb/HT1452
    but also, do you already have your itunes account runnig on other computers?  if so how many ?

  • Why can I not change the apple id associated with iphoto and imovies

    Why can I not change the appleid associated with iphoto and imovies

    Is it not your Apple ID? Is this a used Mac? If so, the Mac, OS X and the iLife apps are all registered to the original owner of the Mac.
    When someone sells a Mac they should erase the Mac and reinstall the most recent version of OS X that came with the Mac. And they should call Apple Care and have the Mac, the OS and the iLife apps disassociated from their Apple ID. Can you call the original owner and request that?

  • Why can't I change my apple id / email address associated with my apple id ?

    My apple id is associated with a gmail address.
    I wan't to change it to something else.
    So I went to: appleid.apple.com ---> Change apple id ---> Typed in new email address (everything shows green) ---> Hit Save.-->Edit box disappears as if everything went ok ----> But the box showing my apple id, still shows the gmail address!
    It still shows my gmail address!! Doesn't send any verification email or anything! No matter what I do, it doesn't let me change it from my gmail address!
    It let me change my password though, and also let me change my rescue email address.
    Why can't I change my apple id ?

    Hi KeanuReeves,
    It sounds like you have already done most of the steps in this article relating to changing the email associated with your Apple ID, but you may want to go through them again -
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    http://support.apple.com/kb/HT5620
    If you are still having difficulty changing the email address, you may want to contact Apple’s account security team using the contact information in this article -
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Why can't I just right click on the thumbnails and set the websites I want?

    I love the thumbnail idea, but why can't I just right click on the thumbnails and set the websites I want?
    Why do i have to wait for a recent one to come up?
    Of the 9 available, I would like to set 6 to website i can input by right clicking it and leave the rest for the recently visited.
    I ho[e you include that feature in your next update.
    Thank you
    P.S. 2 more issues
    1. Firefox is the only browser that always give me trouble attaching files in gmail. I still use firefox for all browsing but for mail attachments, I use others. And yes, I have done the "Clear cookies, reset, reinstall, clear cache, etc etc etc... none worked for more than a few days. no such problem with other browsers.
    2. Your new updated search bar (Top right hand corner) is nice but can be very irritating for the following reason:
    I like to highlight - copy (a word or phrase) - and paste it in the search bar. was fine with the older version, but now as soon as I right click to past, the menu pops up for me to select a search engine. Very irritating since I have yet to paste the copied word or phrase. I rather paste it and then have the option to click on the drop down menu. If you see this as not something masses would want, please place an option in setting for us to stop the suggestion for search engines coming up automatically when we try to right click in the side search bar to paste.

    You can change the order of the boxes on the about:newtab page and drag an item to a different tile to pin it to that position or you can remove a website by clicking the close X to block that URL.
    You can drag a bookmark or history item and drop them in a tile on the about:newtab page to pin them and have your own favorites sites showing.
    Changes made manually on the about:newtab page are stored in prefs that you can find on the about:config page.
    *browser.newtabpage.pinned stores websites that you have pinned to a tile.
    *browser.newtabpage.blocked stores websites that you have removed by clicking the X button in a tile.
    So you can reset those prefs via the right-click context menu to reset changes made to the about:newtab page.
    *http://kb.mozillazine.org/about:config

  • Why can't i access or click on the menu options at the top of ANY web page? Also, Can't close a moddle window using the x in the upper right,?

    Why can't i access or click on the menu options at the top of ANY web page? Also, Can't close a moddle window using the x in the upper right,?

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode

Maybe you are looking for

  • 8.1.6 on RedHat 6.1, OUI can't run, no JRE

    What would cause this error message when trying to invoke runInstaller? The Java RunTime Environment was not found at p/bin/jre. Hence, the Oracle Universal Installer cannot be run. Please visit http://www.javasoft.com and install JRE version 1.1.8 o

  • File system log files for SOA Gateway

    Hi All, I need to get log files for my integration repository/SOA Gateway since I'm not able to generate any WSDL or to deploy a web service. In the SOA trouble shoot document, it says: Log on to Oracle E-Business Suite with the username that has the

  • Safari 5.1 on Snow Leopard

    After an update to Safari 5.1 on Snow Leopard 10.6.8, I experience a lot of trouble with Safari. So far I've discovered this; 1. Links that should open a new window does not work. 2. Any new window whether it is from a link or cmd+n is hidden. You ha

  • Download from OVI Store without internet connectio...

    Hi all, i'm a N97 mini owner i use with a prepaid card. as a cyclist i got this because of it's possibility to use the maps offline. Now i have to doenload the HP iPrint Photo app but i don't have any connection to the internet at all on this phone.

  • Live Conferencing, capturing and maybe editing....

    To those who are familiar with this... Here is the script... I work part time for a firm who do audio visuals for Mainly Conferences and events in the Channel Island, UK. Most of these events require Camera work, for live projections with visual desk