I Can't See any album art on my ipod Please help

For some rerason all of my album artwork won't show up on my ipod anymore. The only way to make it show up is to put the album art on in the library before putting it on my ipod but I have over 1700 songs and it is not worth deleting them to do that. I tried clicking the box to show album art so that it won't show covers and then reapplying it but that won't work. I used to be able to put album art even on files that were already on my ipod. Is that still possible?

there is a work around. i had the same problem
http://discussions.apple.com/message.jspa?messageID=3137465#3137465

Similar Messages

  • While taking photos my iphone's battery died, now my photos app won't open and I can't save any pictures taken or downloaded. Please help.

    While taking photos my iphone's battery died, now my photos app won't open and I can't save any pictures taken or downloaded. Please help.
    Also, I can't import my photos to my Windows 7 PC.

    Try rebooting your iPhone (holding the home button and sleep/wake button together until the apple logo appear)

  • Hello , I want to ask some question about ipads \  How powerful is the iPad?  How useful is it for reading books, newspaper or magazines or for surfing the web? Can you identify any shortcomings of the device?   please help me :(

    Hello ,
    I want to ask some question about ipads \
    How powerful is the iPad? 
    How useful is it for reading books, newspaper or magazines or for surfing the web?
    Can you identify any shortcomings of the device?  
    please help me

    it's less powerful than your average computer. THink of it like a netbook but with a better processor.
    It'll do fine for surfing (although if you browse a lot of flash based sites you will need to get a third party browser since safari doesn't accommodate it)
    You may do OK on reading books, papers or magazines, especially if they have apps, but the ipad's screen is backlit, so it doesn't work well outdoors and you may need to fiddle with the brightness so that you don't get eye strain (it's just like doing too much reading from a computer screen)
    I would say the biggest short comings are data transfer. Apple's preferred work flow is that everything is done via iTunes or the internet....well people dont' always have 100% reliable always on internet access so you can find yourself in a situation where you can't get things on/off the iPad.
    By and large, it's a good device for day to day stuff, but is not a computer replacement.

  • My sound has gone out and please don't tell me about PRAM because my MacBook keeps going to the login screen and I can't hear any start up beeps neither someone PLEASE help me

    my sound has gone out and please don't tell me about PRAM because my MacBook keeps going to the login screen and I can't hear any start up beeps neither someone PLEASE help me

    bcoady90 wrote:
    My guess is a loose connection.
    I suspect you are correct.  I would suggest you bring it to a repair facility that may have better diagnostic tools, preferably an Apple store genius bar.
    Ciao.

  • Problem with album art... Please help

    Hello, I put all my album art on all my songs which took forever last week. I updated my ipod last week and everything was all right with the album art on it. I updated it today, but now, all my album art on my ipod the same picture. On itunes, though, the album art is correct. How can I fix this without having to re-do my whole library!?? I updated my Ipod software and downloaded the latest itunes. Please help me.. Thanks so much in advance...

    The easy quick thing to do IF the album art work is correct on iTUnes, is to just reset the iPod by holding down the center button and menu, if that doesn't work use the latest iPod updater (2006-03-23) and just restore it
    Restore will wipe the iPod clean, but you can just sync it again with iTUnes and have everything loaded back on and hopfully with the correct art

  • Just imported CD... And everything else on my iTunes, without meaning to. But now I can't see the album artwork on my iPod Touch!

    So what I was meaning to do is to import a CD that I wanted to have put on my iPod Touch. But I didn't realize that I was also importing all of my songs from my iTunes Library on my computer, which I already have on my iPod. So, after the sync was done, I opened up my music, on my iPod, to see if it had synced successfully. And sure enough, it was there, but almost all of my albums are now artless! It's really helpful for me to see the artwork, so that I know what songs are in that particular album, so it's really important that I have the artwork. My computer is a PC, and when I imported the CD, I used the AAC encoder, and used the iTunes Plus setting. Please help, and thank you!

    Try:
    - Reset the iOS device. Nothing will be lost       
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync/delete all music and resync
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             

  • Can't see the issue in code...please help

    I have this procedure within a package. Trying to compile and can't...get errors and I can't see why...any help???
    PROCEDURE KILL_ORPH_2PHASE_COMMITS (inLocal_tran_id IN varchar2) is
      tsql            VARCHAR2(256);
      v_local_tran_id varchar2(22 byte);
    BEGIN
    IF inLocal_tran_id is not null then
        tsql := 'ROLLBACK FORCE ''' || inLocal_tran_id || '''';
        dbms_output.put_line(tsql);
        EXECUTE IMMEDIATE tsql;
        RETURN;
    END IF;
        --open cursor
        open cur_2pc;
        loop
          --fetch cursor data
          fetch cur_2pc
            into v_local_tran_id;
          exit when cur_2pc%NOTFOUND;
          tsql := 'ROLLBACK FORCE ''' || v_local_tran_id || '''';
          dbms_output.put_line(tsql);
          EXECUTE IMMEDIATE tsql;
    EXCEPTION
      WHEN OTHERS
        THEN
          dbms_transaction.purge_lost_db_entry('''' || v_local_tran_id || '''');
    END;
    END LOOP;
    CLOSE cur_2pc;
    END KILL_ORPH_2PHASE_COMMITS;Error is:
    Compilation errors for PACKAGE BODY ADMIN.ADMIN_DBA_MAIN
    Error: PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    ( begin case declare end exit for goto if loop mod null
    pragma raise return select update while with <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> <<
    continue close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe purge
    Line: 40
    Text: EXCEPTION
    Error: PLS-00103: Encountered the symbol "LOOP" when expecting one of the following:
    Line: 45
    Text: END LOOP;

    The BEGIN and END are not matching..??
    From your code, it looks like...you want each statement in your loop to have it's own begin..exception..end..
    BEGIN
    IF inLocal_tran_id is not null then
        tsql := 'ROLLBACK FORCE ''' || inLocal_tran_id || '''';
        dbms_output.put_line(tsql);
        EXECUTE IMMEDIATE tsql;
        RETURN;
    END IF;
        --open cursor
        open cur_2pc;
        loop
       BEGIN----------<<<<<<<<Begin for each iteration to have it's own loop...
       ------------>>>(this is for each statement in the loop...)
         --fetch cursor data
          fetch cur_2pc
            into v_local_tran_id;
          exit when cur_2pc%NOTFOUND;
          tsql := 'ROLLBACK FORCE ''' || v_local_tran_id || '''';
          dbms_output.put_line(tsql);
          EXECUTE IMMEDIATE tsql;
    EXCEPTION
      WHEN OTHERS
        THEN
          dbms_transaction.purge_lost_db_entry('''' || v_local_tran_id || '''');
    END;
    END LOOP;
    END KILL_ORPH_2PHASE_COMMITS; ----<<<Another End for the procedure....>>>

  • I can boot up my macbook pro but all i see is the wallpaper and the dock and the toolbar at the top. I can not see my hard drive or anything else. please help

    Please help. I can boot up my macbook pro and log in but after that all i see is the wallpaper, toolbar and the dock. In the dock it has 2 ? where the doc and download folders should be.  If I open up a new finder window it doesnt show anything in there no hard drive or anything. If anyone konws how to help let me know please and thank you.

    Agree with baltwo, though even if you have saved the install app I wouldn't use it unless its been used to install a known good copy of the OS already.
    In your case, that probably means start fresh:
    Restart the computer, holding down 'command' and 'r'. When the recovery disk window shows, choose 'Reinstall Mac OS X'.

  • Albums syncing twice to ipod please help

    When i download full albums from itunes it syncs twice to my ipod.  I n laymans terms can somebody tell me how to delete them from my Ipod please?

    How you delete content from your iPod depends on how it is set up to sync with your iTunes library whether that be automatically or manually.
    If it's automatically, you must reconfigure your settings (from under the Music and/or Summary tab) so that the album you wish to remove is no longer configured to sync to your iPod.  For example, if the Sync only checked songs and videos option is enabled from under the iPod's Summary tab, make sure all the tracks for this album do NOT have a tick mark next to them in your iPod.  Then resync your iPod with iTunes.
    Otherwise, if you manually manage your iPod's contents (i.e, the Manually manage music and videos option is enabled from under the iPod's Summary tab), you must manually remove content from it.  You can do this by plugging your iPod in and clicking the small black triangle next to your iPod from under the Devices section in the left hand pane of iTunes.  This will open up a submenu of content, so go ahead and click on Music. Locate the track or tracks you wish to delete. Highlight them and hit the Delete key or choose Edit -> Delete.
    B-rock

  • I can't find my music folder in my ipod. please help

    I synced all my folder music to Ipod classic, then I look to my Ipod classic but I can't find my music folder anywhere. Please help...

    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

  • I can't see the album cover on my Ipod...

    Hey guys..
    So I got a problem.. My Ipod don't show me all of the Album covers ... Just some... But in Itunes everything is fine and I can see all of them... Can anyone help me?
    Greets lolkas

    Try deleting/unsyncing the songs and resync.
    Next try restoring from backup
    Getting music info to correctly sync to the iPod has been a problem for some users since iOS 5.

  • I can't see my i-Pod screen completely. Please help ME. :]

    the front left part of the screen of my i-Pod is all gray abd i cant see a thing. :[
    Dell   Windows XP  

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312 . Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Can not see the schema under the new connection -- Please help

    The database is Oracle.  Recently I requested our DBA to do a database refresh, and here was she did.
    1. Drop the user (TDEV, schema owner) in Dev.
    2. Recreate the user, TDEV, with the same password, roles and tablespaces.
    3. Using Oracle export command to export data from production under schema owner, TPROD.
    4. Using Oracle import command to import the dump file from TPROD to TDEV.
    5. Both export and import were successful.
    Dev and Production are in two different databases.
    After the importing, using SQL*PLUS I logged into Dev database as schema owner "TDEV", and were able to select all tables.  I also verified there was no schema or user called TPROD in Dev database, and there is no TDEV in Production database.
    However, in Crystal Report, both 10 and XI, when I made the new ODBC (RDO) connection to Dev DSN and logged in as the schema owner user "TDEV", I noticed there is TPROD listed below, but no TDEV.  I tried to select the tables listed underneath TPROD, and got the following error message: "Query Engine Error: '42S02:[Oracle][ODBC][Ora]ORA-00942: table or view doesn't exist'"
    Any ideas or helps are welcome!!

    Try to create a brand new DSN connecting to Dev

  • Iphone 4 will not sync with itunes. I tunes will freeze when it says waiting for sync to start . I can not put any media on my device ! please help !!!

    Please help me figure out why my iphone 4 will not sync with itunes. I wish to prevent wiping the device clean if possible.
    thanks,
               Brian

    I have had exactly the same problem before, I have followed the guide as suggested to the letter and still no joy, each time (3 times now) that I have reinstalled the latest version of iTunes it is recognised and syncs with my iphone but with the next reboot of my computer it is gone again.
    Try to refer this article about [how to transfer iPhone contents to computer|http://www.softwarebbs.com/wiki/Howto_transer_or_backup_iPhone_contents_toPC].
    Hope it works you out.

  • I can't locate any wireless printer in my area. please help!!!

    my mac wont even show me printers in the area is there anyway to fix this issue?
    this is what I get

    yes i do.  The thing with this is that I never had to go through all this to set up those other computers they automatically found the printers in our network.

Maybe you are looking for

  • Suddenly, I can't sync or view media

    I am having a problem with Apple TV, and I have done everything I can think of to solve it without success. Can anyone help me? I have a year-old MacBook Pro and use a Time Capsule for wi-fi and backup. I have the current versions of all applications

  • What HD TV for my MBP?

    I would like to purchase an HD TV to use with my MBP. I'm new to the whole "HD" thing, and was wondering if anyone has suggestions on what to get for use with my MBP: Plasma of LCD. These TVs have come WAY down in price lately and I'm looking for som

  • From string to XML

    Hi, How can i convert a string to XML so i can use it's tags?

  • Agents requires update although the version is correct

    Hello, After upgrading to SCOM SP1 RU3 i have updated my agents as well. All the agents were updated successfully and they the right version as my SCOM version. After a few months part od the agent returned to "Pending management" and requires update

  • How to learn JSP

    Hi all What is the beast way to learn JSP? I am using windows Laptop, Intel Pentium M processor 1.6G 512M Ram. Does that mean in order to practice that I need to change my windows platform to linux platform eg Redhat. In addtion download tomcat. Pls