I have created a new playlist with a new name but cannot get my original playlist back? please help

I have created a new playlist as I was trying to download some music from my itunes library onto a new IPOD.   2 questions, how do I do this easily.  I have created a new playlist but dont know how to get my music accross to the new playlist! also i cant seem to get back to my original playlist where all my songs are stored..please help!!

See:
iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

Similar Messages

  • HT1296 i cannot transfer some videos to my iphone 3gs. the file is in MPEG4 format. i can view in itunes but cannot be transfered to iphone. Please help me with this problem.

    i cannot transfer some videos to my iphone 3gs. the file is in MPEG4 format. i can view in itunes but cannot be transfered to iphone. Please help me with this problem.

    In iTunes, Advanced>Create iPod or iPhone version

  • How do I revert to original footage in Final Cut Pro X version 10.0.9, for some reason I have lost some audio in my timeline and would like to start again but cannot get the original footage?

    How do I revert to original footage in Final Cut Pro X version 10.0.9?
    For some reason I have lost some audio in my timeline and would like to start again but cannot get the original footage?
    Only the edited version which is no good without the audio?
    Please  Help

    What format is your problem clip? Are there wave forms visible in the section without sound?
    Right click on the clip in the event broswer and choose Reveal in Finder; open the clip in Quick Time to confirm that there is sound throughout at that stage of your workflow.
    Russ

  • I have a good connection thru both wifi and ethernet but cannot get to the internet

    I have a good connection thru both wifi and ethernet but cannot get to the internet

    Which model iMac do you have? Which OS system is currently installed on your comp? 

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • I have two user accounts with the same name, but cannot access the old one anymore - all my purchases are on that account! How do I merge the accounts, or recover that particular one?

    I recently encountered a problem with both my account, for some reason it wouldn't accept my new password. And this was about the fith time I'd had to change it! I even wrote it down to ensure I wasn't mistyping it. But for some reaon it wasn't letting me log in form my phone or from my ipad. So I tried to reset it once again. However when I visited the website and searched for my username, it came back saying my 'account name doesn't exist!' I tried again and again but nothing. I thought maybe it would fix itself if I created a new account with the same details, so I did. But now none of my past purchases or my wishlist are showing up - and all my details are exactly the same! I've tried logging in using the old passwrd for my 'other' account but it's not working. And I tried searching for it again to reset the passwrod but it only resets this NEW account.
    I tried sending a request for help, but I need someone with more authority to talk to.
    Please help!

    Antaeus00 wrote:
    I tried sending a request for help,
    But did you succeeed in sending a request for help?
    Did you receive a response? How long has it been since you sent a request?
    but I need someone with more authority to talk to.
    There is no one with more authority than iTunes store support. We herem are only users.

  • TS4268 i cannot activate iMessage on my New iPad with my apple id. It was working until yesterday.  Please help

    New iPad with iOS 6.
    iMessage is not working.
    Please help.

    It seems a lot of people are having this problem...you can try restarting your device, making sure Date & Time settings are on automatic, or changing your DNS to 8.8.8.8. However, most people posting about this problem have tried everything including data resets, restores, etc. and it doesn't seem to work. It seems to be an issue on Apple's end with the servers...hopefully they can resolve it quickly

  • I have Adobe Photoshop 10 installed on my MacBook Pro but cannot get it to type an O with Umlauts as it does on the keyboard outside Photoshop

    I have Adbobe Photoshop 10 on my MacBook pro but when using it cannot get an O with Umlauts, which are easily done outside Adobe.  I feel sure that it must be possible, but nothing I have tried has succeeded.  Can anyone help?

    How are you trying to get the Ö? By holding down the O key or by pressing Option-U to get the umlauts and then press the O?
    I have a later version of Photoshop and am able to type Ö using the "Option-U + O" method, but not using the "hold down O" method. My guess is this has to do with the type engine inside Photoshop. Adobe apps tend to use a different type engine because it is capable of things the OS type engine cannot do.

  • Moving upgrade version of CS 5.5 Design Premium to new computer with valid serial number but cannot find original CS 4 Design Premium serial number so will not accept

    I am trying to move a fully licensed/registered version of Creative Suite 5.5 Design Premium to a new computer, but since it was an upgrade from CS 4 Design Premium the installer says that it cannot find the software that allows it to be an upgrade. I have the old computer and still see the CS 4 installed, but cannot locate the Design Premium serial number. I do not have the original DVD or box for the CS 4 but have all for the CS 5.5.

    If you sign in to your Adobe account online you might be able to find the serial number for your CS4 installation.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • HT1277 i just updated with the new update and now cannot get into my email.  please help!

    i just updated with the new apple update and now cannot get into my email.  i get an error message that i tried to open mail version 4.5 and cannot in apple os x  please help!

    This happened because if Mail.app was moved from /Applications or placed in a sub-folder there, the update (Security Update 2012-004) couldn't find it and fails for writing new files to Mail. This update updates Mail 4.5 to 4.6, consequently the message that 4.5 is incompatible, since it's looking at the now "old" 4.5 version. See the thread linked below for a fix and some other possible workarounds.
    https://discussions.apple.com/thread/4311280?tstart=0
    Basically, make sure Mail.app is in the Applications folder inside the Macintosh HD folder, and sitting by itself not in an enclosing folder. Then get the update from Apple Downloads   and run that again.

  • Never used itunes before, have downloaded a song onto laptop but cant get it in ipod nano please help

    New to itunes managed to download a song to laptop but cant get on to ipod nano(plugged into laptop) or iphone or ipad

    I have sorted it myself!!
    Ipod is now in the top right corner, last time I clicked on it, it ejected it but by clicking on the actual ipod icon then it brings up your ipod. I restored it to factory settings and synced all my music and it now works again. Hope this can help anyone who ends up with the same problem.

  • My pfd files once downloaded doesn't have an 'open in..' at top right corner.  Just an arrow that, once clicked, have a print option.  I cannot get it to ibooks.  Please help!

    I am trying to download a pdf file from my email into iBooks with the new iPad 3.  The problem is that in top right corner, it does not say "open in..".  Instead, it just has an arrow that only gives a print option.  What's wrong?

    Hi jscher200,
    Thank you for your reply, sorry for the VERY late late response, but I have just figured out how to control this separate 'panel'. I find it really useful for monitoring Google Analytics in as it can just sit there running. It does have its limitations, as it's a limited size (you can't expand it to full screen view), so you can only ever see a vertical section of a website and need to scroll to look to the right or left, but I have the live view of people accessing my website running on there and if the numbers start racking up at any time, I can scroll to look and see what pages they are accessing, where they've been referred from, etc.
    To get it to work, you save a website address in the Bookmarks Toolbar and when you can see it sitting on the toolbar at the top of the screen with its little icon, right click on it then click 'properties', then tick the box 'Load this bookmark in the sidebar'. The next time you click on this bookmark to open the website, it will load in this sidebar, which looks like a separate 'window' but is immovable. You can only have one sidebar application running at a time, but can change it by right clicking on the bookmark you want to load in there and it will then change to that one next time you click on that bookmark.
    I hope this might be useful to others, as I asked for help with this on loads of forums and not one person knew that this existed - even really skilled techies!

  • TS4009 i have the "not enough storage" message on my iPad but cannot get to settings.  It seems like the ipad is locked.

    I have the "not enough storage" message on my ipad but nothing happens when I press the "close" or "settings" option.  It is like the ipad is locked.

    Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • I am still in the stone age and using CS4.  Looking to upgrade to creative cloud.  Will I have any issues and what can I do to keep the files I have created in CS4 active with the new software?

    I want to continue to use my CS4 created projects while upgrading the Creative Cloud.  I have an Imac, Ipad, Iphone 6 and Macbook Pro.  Am I going to lose or not be able to bring those .ai files from CS4 into the new software?@

    Please refer to:
    Can You Save/Open CS6 Files on CS5, CS4 or CS3 – and Vice Versa? | ProDesignTools
    Can You Open/Use/Export/Save Adobe CC Files on CS6 – and Back? | ProDesignTools
    It has important information.
    Regards
    Rajshree

  • I have Mac os10 yosemite and with photoshop elements 13 I cannot get a menu from Print to change the type of paper.  Where is that menu  The one that comes up only alows for paper size not type

    After clicking print the menu that comes up does not allow for a change in paper type.  Where can I change the paper type. OS 10.10 Yosemite with Photoshop Elements 13.  I have a windows computer with the same program and the print menu has a paper settings option but not on the the mac.  What gives.  Is the Elements 13 not compatible with the OS 10 Yosemite?  Thanks for any help

    If you delete all the Adobe Reader stuff it will probably fix this. For almost everything, the Apple pdf handling works better.

Maybe you are looking for

  • Report on Total U/R stock and Open PO quantity

    Dear Friends, Is there any standard report or table which gives the present unrestricted usage stock and Open purchase order stock for all materials in a storage location or material group as selection instead of single material. If we can have open

  • Forums URL

    Would be possible to change the URL for the Arch forums to "forums.archlinux.org"?  I find that the current "bbs.archlinux.org" doesn't seem fitting, given that the AUR is "aur.archlinux.org" and the wiki is "wiki.archlinux.org".  Unless "bbs" has a

  • Blog entry in iWeb via e-mail?

    Hello, I have an iWeb blog on MobileMe and wondering if it is possible to add blog entries via e-mail? (This feature would be very handy if one is away from his Mac...) Thanks, Attila

  • Dunning letter language in French instead of English

    Hi, We're on SBO 2007A SP01 PL07.  Trying to use the Dunning for the first time - changed the default template to English (from French) but the letter still comes up in French. Have tried assigning the template to use, to BP, but keeps coming up in F

  • Rhythmbox doesn't play mp3s

    I just installed rhythmbox and made sure that ALL the gstreamer plugins were also installed. When I try to play any of the mp3s in my music collection rhythmbox just increases the play count and in the upper left corner where it would normally displa