Problem with playlist transferring

OK....really sorry for the stupid question here...I just got a 3G Nano, and sync'd for the first time yesterday. All the playlists that I had for my mini are still on the computer, but they didn't sync to the Nano. The name I gave the Nano appears as a playlist, with all my music under that. I thought these would automatically sync to the new iPod. What didn't I do?

Under the Menu When you plug in your IPOD, THere is a tab on the top known as "Music" Check all the boxes for your playlist. It should Sync.
Did this help? Or am I mis-understanding. LEt me know if there is any other problems

Similar Messages

  • Problems with File Transfers Over Firewire 800

    Problems with File Transfers Over Firewire 800.
    Over the past month, I have had problems when transfering files from my harddrive, over Firewire 800 to a portable drive. I usually transfer very large files (20gb or more) to the portable drives for moving files around. When I drag a file over to copy onto a drive, the transfer starts normally. If I drag more files to copy over, the computer screen goes darker and a large icon comes up that looks like a power button icon. It tells me to restart, so I have to do a hard shut down on my G5. Weird. I also get the dark screen of death sometimes when I am transfering those large files and open another application to do some work while it's copying. It's killing me. I am having to sit here and wait for the transfer to finish before I can do anything.
    Any thoughts...
    Dual 2.7 GHz PowerPC G5
    Mac OSX 10.4.3
    Dual 2.7 GHz PowerPC G5   Mac OS X (10.4.3)  

    Have you run the Apple Hardware Test? Sounds like it could be a RAM problem.

  • Problem with song transferring

    I am having a serious problem with my iPod. When I try to transfer songs onto it, after about 20 songs, the transfer process will begin to slow down dramatically by pausing on several random songs. Eventually, if the amount of music i'm trying to transfer is large enough, the transfer process, and iTunes, will freeze, and when I eject my iPod no songs seem to have transfered and the iPod is empty. If only transfer 20 or 30 songs onto it I have no problem listenening to them, it is only when a certain amount of songs are on it (or being transferred to it, I'm not sure.) The iPod is a replacement for a broken one, and it has only suffered on drop, although it was semi-hard. If anyone has any advice please let me know, I've tried everything I can think of.

    you could try to manually load everything. It would still take a long time. but if you do it in like album batches it might make it through.
    good luck

  • Problem with playlists iTunes 10.5.2

    I downloaded the latest iTunes and noticed after downloading that the order of the songs on my playlists have completely changed, I know it seems like a minor problem but it's rather annoying especially when I have playlists with over 1000 songs with the order of them quite important. Even now when I add songs to these playlists they are not placed in order of the tracks I added them in, in fact the tracklist order changes every time I go to it.
    I have never had this problem with previous updates and it clearly seems like some kind of glitch.

    I would recommend booting into safe mode first. Directions on doing this can be found at..
    http://docs.info.apple.com/article.html?artnum=107393
    Once you get to the safe boot login screen(will look like a regular login screen) instead of loggin in, try pressing the arrow pointing to the left and then pressing restart. This will boot your computer back up into regular mode and then you will need to download the update one more time but this should repair what is necessary to not make it hang. Hope this helps...

  • Missing ID Tags & Other Problems with Music Transfers

    Hello,
    I have been having some inconsistent problems with adding songs to my main iTunes Music Folder. Occasionally, songs will transfer without some of the ID tag information, despite the transfer (or consolidate) method used. Let me explain...
    My main 30000 song and 170 GB iTunes database is located on my PowerMac G5 1.8 GHz DP at home. I usually rip small portions of my CD’s on the road via my PowerBook G4 1.5 GHz (assuring that all of the tag information is correct). Once home, I transfer the iTunes Music Folder (usually only 1 GB big) from my PowerBook to the Desktop of my G5. From there, I drag the folder onto my iTunes window and allow it to duplicate directly into my large iTunes Music Folder. Once done, I delete the temporary iTunes Music Folder from both the PowerBook and the G5. I also delete the iTunes Library and iTunes Music Library.xml files from my PowerBook before starting up the process with another batch of CD’s. This is how I have built most of this database and only recently begun to have problems. The problem songs always retain the song name and, since I have always used the default ID tag setting, most songs show version 2.2 to 2.4.
    In my troubleshooting, I tried to make completely new iTunes Library and iTunes Music Library.xml files by using this same method with my entire main iTunes Music Folder (yes, it took a long time to finish and I had a clone for backup). Suprisingly, almost 10% of those songs suffered from the same problem! Reattempts with smaller transfers showed no change. In this process, I also noted that some song files transferred, but showed NO signs in the new iTunes Library!
    As I am a big fan of the iTunes AppleScripts by Doug Adams, I have ways to discover and correct these problems. However, I still would like to find out what is causing it. Does any of this sound familiar to anyone? Would converting every song to the ID tag version 2.4 make any difference? Obviously, this is my most prized database of information and I want to protect it, as well as administer any preventitive maintenance that it needs for good health.
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

    It shouldn't matter what size your library is - if the information is in your files then it should get imported.
    1. Are you sure your problematic mp3 files are in fact valid mp3 files? If you open Terminal.app, and type this (substituting your mp3):
    hexdump -C -n 30 ~/Desktop/Sample.mp3
    You should see some hex & ASCII come back - for example:
    00000000 49 44 33 03 00 00 00 03 13 68 54 59 45 52 00 00 |ID3......hTYER..|
    00000010 00 15 00 00 01 fe ff ff ff 00 7f 00 7f 00 |..............|
    All id3v2 mp3's begin with "ID3" and the 4th byte represents the id3v2 tag version (2,2, 2.2.1, 2.3, 2.4); mp3's with an id3v1 headers are a little odd, but they generally begin with "FF FB" or "FF FA". I've seen moov files masquerading... all kinds of things. These won't hold tag data, and so would exhibit the behavior you describe. I myself got duped into making these abominations by using QuickTime to select a chunk of an mp3 and renaming to "file.mp3" - when it was a full blown quicktime movie that it really exported as.
    2. Are you sure the information exists within your file at all? All tags get written back into the file (except I think rating and certainly playcount). You can use any number of utilities to get at the data, some easy (python/perl utilities) or that require compiling (id3lib, taglib). You can get use the above method (with a longer number than 30) or a hex editor and look for the values manually as well.
    Using for example PyID3 (http://icepick.info/projects_old/pyid3/), download & extract; open a Terminal.app window and type:
    export PYTHONPATH=/Some/path/to/YOUR/PyID3_folder
    (or you can just type up the the = and drag-n-drop the folder onto the window & hit return. Then type:
    python -c 'import id3'
    Then in the examples folder, drag-n-drop the "listid3v2.py" script onto that same terminal window/session, and then an mp3 file (and hit return). If whatever information is missing from there, it isn't in your file. Note: PyID3 might have some issues with a v2.4 tag (specifically year is carried on the TDRC tag, and TYER is obsoleted). You can get an v2.4-enabled id3lib binary here:
    http://members.verizon.net/pucklock/id3Infiltr8/IDInfiltr8.htm
    Find "id3info" in the support folder, and drag-n-drop that binary onto a Terminal.app window, followed by your mp3 file. It should spit back all your info (except Grouping). The application itself should do much the same, just not the full breadth of tags available - just use it on copies.
    3. Converting to a different tag version wouldn't impact most tags (year being 1 major exception) - the other conversions (latin1, unicode, blahblah) woudn't change anything if you use mainly ASCII text. It could if you're big into Ukranian Progressive Polka - and used Cyrillic to tag everything.

  • Problem with playlists on my iPad

    Hi everyone..
    I noticed a little but very pesky problem on my iPad 2 with 4.3.2 firmware
    I have 16 audio playlists in my iPod app, synced from iTunes...but...I can't select the last 5 from the list, because the list is covered by the album art of the currently playing song!!!!
    when i try to scroll to the bottom of the list, it 'bounces' up to the sixth playlist from the bottom, and the last 5 remain covered, and I cant' select them and view the songs that they contain!!
    please help me...
    solutions? anyone who noticed the same bug??
    please help me, I'm going crazy!!
    if you do not understand the problem I can post the video of the bug on youtube...

    Workaround: https://discussions.apple.com/message/15005124

  • Syncing Problem with playlists

    Hello everyone,
    I own an iPhone 4S and I've updated to iOS6. A couple of days now iTunes cannot syncing my playlists with the iPhone.
    What can i do?

    Can you further explain what you mean when you say it's not sync'ing? For example, is it the case where the playlist doesn't show up at all on the device or is it the case that the playlist is there but is empty?
    If the playlist isn't showing up at all, then it may mean that you have iTunes set to only sync selected playlists and the one you want hasn't been selected yet.
    If the playlist is there on the device but you get a screen that says "No Music" when you select it, then you may have run into the same bug I did on the iPhone. (By the way, which device are you using?) I ran into this awhile ago where some smart playlists would sync and others wouldn't. If it's the No Music bug, then this article solved it for me:
    [Workaround for No Music bug|http://macintopics.com/2010/07/29/apple/iphone/workaround-for-the-no-music- screen-on-the-iphone-and-ipod-touch]
    Does that match what you're seeing or is it a different problem?

  • Problem with playlist

    on one of my playlists I am not able to move songs around, I checked all the other lists and it works but one.

    Oh no!! I can't believe this!! Just today I purchased a new, previous generation 30G iPod from Apple.com. (Can't use the new generation, processor too slow, long story). Now I'm reading that the new iTunes is trouble!! I have iTunes 7.6... am I in for problems?

  • Problem with playlist in Jikebo

    When I reboot after shutting down the Jukebox 3, it does not emember where it left off on any of my playlist, is there a fix for this. I have the latest firmware. I have to assume that other owners have had this problem, or is this just the way it is

    Please update firmware version v3.0.6 and try again!!
    (http://www.msi.com.tw/program/support/firmware/frm/spt_frm_ia_detail.php?UID=607)
    Hope to solve your issue!!!

  • Problem with Image transferring

    Hi all,
    I use Base64 technique to encode Image file as String, then write a servlet to send this String to client.
    At client side, I also use Base64 to decode this string, but the received image is not the same as the old one from server (quality is really bad).
    The following is my code:
    // server side
    try
    FileInputStream fi = new FileInputStream(file);
    byte[] b = new byte[1024];
    String temp = "";
    while(fi.read(b) != -1)
    Base64 b64 = new Base64();
    temp += new String(b64.encode(b));
    datas.add(temp);
    catch(Exception ex)
    ex.printStackTrace();
    // client side
    try
    Base64 b64 = new Base64();
    byte[] arrByte = b64.decode(datas[0].getBytes());
    File file = new File("E:\\girl.jpg");
    file.createNewFile();
    FileOutputStream fout = new FileOutputStream(file);
    fout.write(arrByte);
    fout.close();
    catch(Exception ex)
    ex.printStackTrace();
    Is this problem of Base64 technique? or any wrong with my code...
    (P/S: sorry for my bad English :) )

    you could try to manually load everything. It would still take a long time. but if you do it in like album batches it might make it through.
    good luck

  • TS2776 Sync problems with Playlist

    I purchased new songs; I see thme in my playlist on my PC. After I sync I dont see the new songs on my iphone 5S.

    I have the same problems, none of the songs listed on my iPod are even the same as the top 100. I also had the problem of my iPod cutting out in the middle of songs and returning to the same menu and every new iPod I got the same thing happened, I am on my third iPod Touch now. Has that ever happened to anyone elses? Ironically enough, every single one of them has had the same playlist problems. I tried reinstalling itunes and restoring the iPod afterwards but no dice. I think I may reformat to try and see if that works, unless anyone else has any suggestions.

  • BI statistics - problem with records transferred from database

    Hello,
    I just recreated an old BW statistics report in the new 7.0 version and this on multicube 0TCT_MC01.
    In the old report (BW 3.5) there was a difference between:
    1) - records transferred from DB (0TCTDBTRA)
    2) - Cells transferred to Front End (0TCTNCELLS)
    I red the following paper on SDN, titled: 'SAP NetWeaver BI Administration Cockpit Technical Content BI Statistics'.
    And here they talk about:
    - 0TCTNDBTRA (unfortunately this is a keyfigure of another multicube 0TCT_MC03, so it can not be used in my report)
    - 0TCT_DBTRA (this KF even does not exist in the technical content!)
    In the new report (BI 7.0) I used 0TCTDBTRANS to replace the 0TCTNCELLS.
    Now my question is how can I replace/define 0TCTDBTRA in the new report. I really need this key-figure in a report on the 0TCT_MC01 multicube.
    Hope you can help me, I you have any further questions do not hesitate to contact me.
    Kind regards,
    lex

    I posted the issue with another user but from this moment I will check it with my user.
    Hopefully somebody can help me with the issue....
    Regards,
    lex

  • HT1399 problem with playlist sync of  ipod nano 3rd gen will sync new pieces of music but it won't sync a new playlist I added and it has "lost" one I had before. Any ideas why?

    Since I got the last update of itunes, my 3rd gen will sync new pieces of music but it won't sync a new playlist I created and it has "lost" one I had before. Any ideas why and what I can do to cure the problem?

    if you have done restores then possibly it is a firmware issue... i would take it to the apple store if you can to get it looked at...

  • New Computer OLD DW4 problem with site transfers specifically the templates

    I'm running the ancient dreamweaver 4 (not cs4, the really old one!) and just got a new computer, the site I've been working on is saved on a flash drive on my USB port & I am able to open each page/file individually & they each look fine, BUT they are no longer attached to the template I created (although I can view them correctly!?!?) So now when I make a change to the template it doesn't prompt me to update all attached pages    HELP Please!

    they are showing correctly in my browser so they now include the info from the template.
    Uh oh - no I'm confused.  Are you saying that the pages are now updating properly?
    Also, what OS is on your new computer?
    Anyhow, here are seven common mistakes that will result in changes not propagating from Template to child -
    1.  Rename the Templates folder
    2.  Move the Templates folder to some other folder level in the site other than root level
    3.  Move a template out of the Templates folder.
    4.  Make changes to an editable region of the Template (which will not propagate)
    5.  Assume that Template changes will be effected by just uploading the changed Template file to the server without also uploading the changed local files
    6.  Corrupt the site cache so that the link between Template and child page is broken
    7.  Improperly create your child pages by simply opening the Template, adding page specific content, and resaving the Template with an *.html extension rather thanits *.dwt extension. (you can tell if this is the case by looking at the code on a child page - if you see anything like <!-- TemplateBeginEditable... then this is what you have done).  If you *have done this*, then recreate the child pages (in DW) using FILE | New > Page from Template, select the Template and click CREATE.
    The 6th problem can be repaired by using SITE | Advanced > Recreate Site Cache, and the six others can be fixed by just not doing them.  Have you done any of those?
    Or, read this -
    http://www.adobe.com/go/dd83ba8b

  • Problems with playlists

    Help, I can't seem to change the tracklisting in playlists, I highlight the song and then drag it as per the itunes tutorial but the songs don't change position in my playlists. Any ideas, Cheers

    Actually I thought at first you couldn't do this in a smartplaylist, but actually you can, you just have to turn off the "Organizers" in the header. What I mean by this is where it has the number of the song, right before the name of the song (1 2 3 4 5....10) you hit the blank header for that colum Now you can drag and drop songs where you want them in the list
    Hitting this "Blank header" basicly turns off the organizers that are on or turned on when you hit the other headers like "Artist" "Date Added" "Album" ect ect

Maybe you are looking for

  • Web Service Model for ABAP Web Service

    Hi, I have developed ABAP web service and called it using web service model in WD. The WS is working from WSNavigator. While calling it from WD, im getting the following exception: Service call exception; nested exception is: com.sap.engine.services.

  • NEED HELP EMBEDING FONT INTO MYSITE

    I have finish mysite and need to know how to embed my font.  I know about going to the library and clicking new font then going to linkage, but I dont know the action script to put into my actions panel. CAN ANYBODY HELP PLEASE. My font name is 1979

  • Timeline help

    I am working on a flash site where, there is a bit of animation at the beginning and some graphics come into frame. There are four buttons that will jump to various parts of the timeline when pressed. My question is, how can I make the graphics which

  • Unable to view the details data  in "Employee Self-Service 4.0" of HRMS

    Unable to view the detail data in "Summary of Absences" when click the "Leave of Absence " button in "Employee Self-Service 4.0", the whole login path is : "Employee Self-Service 4.0" ===> "Leave of Absence " It shoud be seen the "Summary of Absences

  • Take 2 Help

    I just put the take two update on my ATV. I like the new settings and features, but after viewing things for about 5 min the tv screen goes black and then says that there is no signal coming from the ATV. Any ideas as to what the change is?