How can I get my ipad to reflect the same playlist order that appears on my computer?

How can I get my ipad to reflect the same playlist order that appears on my computer?  My computer has the exact desired order of playlist, but once the system is synced, the ipad does not reflect the propper order.

In iTunes with your playlist shown in the correct order, right-click on the playlist name in the side-bar and click Copy to Play Order. Enable the side-bar with CTRL+S if necessary. Sync. Note also that the column you are sorting on should have the small triangle pointing upwards, otherwise the songs will play in the reverse order. You may also find that you need to first remove, and then add back the playlist to the device if syncing doesn't update it properly. See this post for more.
tt2

Similar Messages

  • How can I get my iPad to connect the love film app to my Apple TV?

    How can I get my iPad to connect the love film app to my Apple TV?

    Have you confirmed that the app supports AirPlay? If it doesn't, then you'll have to connect via screen mirroring. See:
    http://support.apple.com/kb/HT4437
    and
    http://support.apple.com/kb/HT5209
    Regards.

  • How do I get my iPad to reflect the folders on my IMAC

    How do I get my IPAD to reflect the folders on my IMAC and so when I save something to a folder it gets saved on my IPAD too!
    thanks
    tim

    In iTunes with your playlist shown in the correct order, right-click on the playlist name in the side-bar and click Copy to Play Order. Enable the side-bar with CTRL+S if necessary. Sync. Note also that the column you are sorting on should have the small triangle pointing upwards, otherwise the songs will play in the reverse order. You may also find that you need to first remove, and then add back the playlist to the device if syncing doesn't update it properly. See this post for more.
    tt2

  • How do I get my ipad to find the wireless HP printer that is supposed to be compatible w/ Air Print

    How do I get my ipad to find the wireless HP printer that is supposed to be compatible w/ Air Print?

    Mary-
    First be sure your printer is on Apple's list of AirPrint compatible printers at <iOS: AirPrint 101>.
    Assuming it is on that list, check to see if there is a firmware update for it.  You should be able check it from the printer's control panel in one of the setup or preferences menus.
    If the printer is still not found in the iPad's print routine, your WiFi router may not correctly handle Bonjour data required by AirPrint.  You would need to contact the router's manufacturer to see if there is a change you can make to its setup, or if there is a firmware update that will solve the problem.
    Fred

  • How can I get iCal not to show the same birthday dates from my iCloud

    How can I get iCal not to show the same birthday dates from my iCloud?

    You don't need them stored locally for a backup. You can manually export your contacts as archive for backup. Also, if you are backing up with Time Machine, you already have a backup. If your hard drive crashed, you would have to rely on your backup or iCloud anyway.
    So, if you're comfortable with that, sign out of iCloud. Choose to delete contacts from the computer. When you sign back into iCloud, you should only have iCloud contacts listed in AB. When you open iCal, you should only have one listing for birthdays.
    The other alternative is to disable the Birthday c.alendar and create one manually.

  • How can I have podcasts and music in the same playlist in iOS7?

    How can I create an iTunes playlist that contains both music and podcasts and export that playlist to my iPhone? This was once possible. If you download the "Podcast" app, podcasts can still be added  to iTunes playlist which you can listen to on your Mac. But when you sync that playlist to iPhone, it will omit all of the podcasts.
    Previously, the workaround was not to download the Pocast app. That way, podcasts remained in iTunes where they could still exist in with music in the same playlist. But as of iOS7, you are required to install the "Podcasts" to be able listen to podcast at all. No more workaround.
    Why does this matter? Some people, like me want to drive or exercise while listening to a mix of music and podcasts. Apple's "improvements" have restricted the way that I am able to use iTunes.
    I can only think of these solutions:
    Convert the podcast into AAC or other format. Then iTunes sees it as "music" and it will stay in the playlist. Cons: 1. Burdensome. 2. Removes the resume feature from the podcast. 
    Use a different iPhone app. Spotify lets you drag any track (even podcasts) into a playlist and they stay there when synced to the Spotify iPhone app. Cons: 1. Requires Spotify premium service to listen to playlists on iPhone. 2. The resume feature is removed. 3. Very difficult to forward and rewind. 4. Some podcasts are rejected by the Spotify playlist, although its rare. 5. After being imported, the tracked need to be synced to the phone via WiFi (as with all tracks that are not offered via Spotify.)
    I am using the Spotify solution but am interested to know if there is an Apple solution. Or maybe I am the only one that wants to mix podcasts with music.

    How can I create an iTunes playlist that contains both music and podcasts and export that playlist to my iPhone? This was once possible. If you download the "Podcast" app, podcasts can still be added  to iTunes playlist which you can listen to on your Mac. But when you sync that playlist to iPhone, it will omit all of the podcasts.
    Previously, the workaround was not to download the Pocast app. That way, podcasts remained in iTunes where they could still exist in with music in the same playlist. But as of iOS7, you are required to install the "Podcasts" to be able listen to podcast at all. No more workaround.
    Why does this matter? Some people, like me want to drive or exercise while listening to a mix of music and podcasts. Apple's "improvements" have restricted the way that I am able to use iTunes.
    I can only think of these solutions:
    Convert the podcast into AAC or other format. Then iTunes sees it as "music" and it will stay in the playlist. Cons: 1. Burdensome. 2. Removes the resume feature from the podcast. 
    Use a different iPhone app. Spotify lets you drag any track (even podcasts) into a playlist and they stay there when synced to the Spotify iPhone app. Cons: 1. Requires Spotify premium service to listen to playlists on iPhone. 2. The resume feature is removed. 3. Very difficult to forward and rewind. 4. Some podcasts are rejected by the Spotify playlist, although its rare. 5. After being imported, the tracked need to be synced to the phone via WiFi (as with all tracks that are not offered via Spotify.)
    I am using the Spotify solution but am interested to know if there is an Apple solution. Or maybe I am the only one that wants to mix podcasts with music.

  • How can i get my iPad back on the internet?

    Everything wad down today...cable, internet, etc.  Now it is back.  My iMac is right back on line and all is well.  The iPad, though, says I am not connected to the internet and nothing is working.  How do I get the iPad back on line.  I checked the settings and it shows that my wefi is on and I don't see any other settings the check or fix.
    Please help. 

    It's back on.  I figured it out.....I had to reset the iPad.  I don't know how to delete the above message....sorry.

  • How can I get keys from Hashtable in the same order?

    Hello, everyone.
    I have a Hashtable containing key-value pairs, I need to get the keys in the same order as I use
    method put(key,value) to save the key-value pairs. But I can only find Hashtable.keys() to fetch the keys in form of Enumeration and when retrieve the keys from the Enumeration,they are not in the original order!
    The following is my code:
    Hashtable ht = new Hashtable();
    ht.put("Name","Harry Bott");
    ht.put("Gender","Male");
    ht.put("Age","25");
    String[] Items = new String[ht.size()];
    Enumeration e = ht.keys();
    int i = 0;
    while(e.hasMoreElements()) {
    Items[i++] =(String)(e.nextElement());
    The Items contains the keys but they are not in the original order.
    Does anyone know how to get the keys from a Hashtable in the same order when they're put?
    Thank you!

    yeah, another solution is to stored keys on a Collection at the same time you put them on the HashMap with its values.
    Then when ur going to retrieve objects from the Map u iterate the Collection that has the ordered keys and use them.

  • How can I get a container to be the same size as all its children

    In my TitleWindow, I have two children that size themselves
    dynamically.
    No problem, TitleWindow also sizes itself to completely show
    both children.
    Now I have an additional child that I can only position
    correctly if I set TitleWindow's layout parameter to absolute.
    The third child now positions itself correctly on top of the
    first child.
    But now TitleWindow is only as big as the first child and I
    have to scroll to see the second child.
    How can I force TitleWindow to be the size it was when layout
    was set to vertical?
    Doug

    Hi Doug - What exactly are you trying to do? Is the third
    child being added dynamically, and you want it added above the
    first child? If so, you can use the addChildAt() method when adding
    the child to the container. addChildAt() takes an index and the
    child object is added at that index and all other children are
    reshuffled to maintain the ordering. IE:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:TitleWindow layout="vertical" id="tw">
    <mx:Button id="a" />
    <mx:Button id="b" click="go();"/>
    </mx:TitleWindow>
    <mx:Script>
    <![CDATA[
    private function go():void
    var c:Button = new Button();
    c.label="new";
    tw.addChildAt(c, 0);
    ]]>
    </mx:Script>
    </mx:Application>
    Does that help, or am I misinterpreting what you're trying to
    do?

  • How can I get my website to display the same in multipul browsers?

    I am having trouble displaying my webpage in different browsers. I have run it through html & css validators and they can't pick up on any faults which would through the site out of line.
    When I display the same code on different computers, different aspects of the pages change even though the files are exactly the same.

    Start by running your page through the validator:
    http://validator.w3.org/
    You have some elements which are not nested properly such as scripts running outside of the head and body, required attributes missing, tags missing opening or closing, a <br /> tag in between </td> and <td>.  Then you can ignore the stuff about Flash because the Adobe codes for Flash and Spry never seem to validate.  Some of the other errors at the bottom like no </body> tag can be ignored because they are there, it just means there is a tag not closed before the end of the body so it generates an error saying the body was not properly closed.  The lines below that with tag mismatches will help you determine what is and what is not closed.
    If you get that done and still have errors please let us know what browser/version/error you are having an issue with.

  • Apple update ruined my playlists, they are no longer on my ipod and playlist i didnt have are. how can I get mine back. And i am missing songs that appear in itunes but not on the ipod?

    apple update erased my playlists, they are no longer showing on my iTunes. I am missing songs that do appear in iTunes and should be on the ipod but are not, and new playlists that I didn't have are now where mine should be. Any suggestions as to getting "MY" ipod back?

    - 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
    To delete all music go to Settings>General>Usage>Storage>Music>Tap edit in upper right and then tap the minus sign by All Music
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • HT1414 How can I get my IPad back to the way it was before I updated it? I hate the way it is now!

    I recently upgraded my IPad because I thought it was a necessary security upgrade since Apple's security was recently compromised. I did not know it was going to reconfigure my settings. I hate it the way it is now and don't know how to get it back to the way it was. Is there anyway to reverse the upgrade without losing my pictures and other data? I also lost some expensive courses I had purchased. They are no longer there when I open the app.  I hate the way it organized my pictures too. I have no control over this, and it makes me very unhappy. Is there a way to fix it?

    I am afraid you can't.

  • How do I get my iPad to have the same movies as my mac?

    I just got iMovie for my iPad and I have several movies on my MacBook pro but I don't know how to get them to my iPad. I heard there was this thing with iTunes but I don't know how to use it.
    Thanks!!!

    Yeah, I think you want to go to the Share Menu > Share to iTunes for each of your movies on the MacBook. Then connect your iPad to the Macbook and in iTunes sync the Movies up to the iPad:
    http://macgroup.org/blog/2010/05/10/sync-your-iphone-ipad-or-ipod-touch-with-mul tiple-computers/

  • How can I get my layout to look the same across multiple browswers?

    Hello forums!  How are you guys?
    I use Dreamweaver to edit my layout for my site.  However it looks fragmented on certain browsers and perfect on others. 
    www.ifuxkswiththat.com is the site.
    Is there something that can keep this uniform amongst other browsers?
    Check it on yours...it might work for you and it might not

    Your best bet is to get it right in something like Firefox or Safari, and then use some conditional CSS to tweak it in IE browsers.
    So put things like this in your header :
    <!--[if IE 5]>
    <style type="text/css">
    /* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
    #outerWrapper #contentWrapper #leftColumn1 {
      width: 16em;
    #outerWrapper #contentWrapper #rightColumn1 {
      width: 16em;
    </style>
    <![endif]-->
    You can specify the particular IE browser above or use, for example <!--[if lte IE 7]> for IE 7 and below, or <!--[if lt IE 7]> for IE 6 and below.

  • When i click on a photo file in windows , elements opens, then i have to go back into windows and click again to open file , earlier version opens program an file how can i get elements 12 to do the same?

    Elements

    The way I got around the situation was to write a custom folder action and attach it to my Downloads folder. The good thing about this is that it works irrespective of the browser du jour I'm using.
    This way you can define any filetype you're interested in to auto-open when a file is created in the Downloads folder (or any other folder of your choosing).
    It's not that tricky to add. I think I posted the code here many moons ago so I'll try and track it down...
    Edit: It was a post to macosxhints.com that I last linked to: http://www.macosxhints.com/article.php?story=20050122214044554#comments
    Hope some of that helps.

Maybe you are looking for