Delete on-the-go list

Hello, anybody knows if it´s possible delete a list from On-the-go playlist. I don´t want some lists anymore and I have not found the way to do it. My ipod is classic 80GB.
Any idea?
Thanks

Are you talking about on-the-go 1, on-the-go 2, etc?
You can just delete them from iTunes - they can all be found under Playlists on the left. Just right-click each unwanted list and choose Delete. When you next resync your iPod, they will be gone.
If you want to clear the current On-the-go, you can do this directly from the iPod (no iTunes needed). On the iPod, go to Playlists, scroll to "On-the-go", and press the center button. Highlight "Clear Playlist", press the center button, the press it again (make sure "Clear" is highlighted in blue).

Similar Messages

  • 3.6.8 on MacX doesn't allow history to be cleared either by TOOLS or delete in the history list???

    Have tried to delete, forget, and use TOOLS to clear. None work....

    See http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • How to delete the existing list values before binding

    Hi,
    I'm new for flex..
    i like to know how to delete(clear) the existing list data values before binding the new values..
    I'm using the list for binding data dynamically by using http services.if i send the another call mean's the exiting item should be flushed and  coming  data item's would be binded into the same list...
    Thank's in advance....
    Regard's
    mani

    Hello
    On your ResultEvent method you can add something like this:
    private function onResultEvent(event:ResultEvent) : void
         yourBindableList = null;
         yourBindableList = event.result as ArrayCollection();
    In this code i send to my BindableList a null value before i setter to list the result of my HTTPService, making a cast to ArrayCollection.
    Regards

  • How do I permanently delete songs from purchased list?

    I have some songs that my x-husband purchased on our iTunes account that I want to permanently delete from the purchased list.  I don't want our son having any access to them either in iTunes or the Cloud for download to any other device.  Please help!!  I can't figure this out!!

    Delete them.
    Turn off the cloud option in Edit > Preferences > Store > Show iTunes in the cloud purchases.

  • How can i delete in the app store the purshased apps(in the update menu)?...

    How can i delete in the app store the purshased apps(in the update menu)?...
    I have a lot of "garbage" apps that i want to delete from the purshased list in the app store(iphone) in the update menu, now my list is huge (a lot of garbage free apps i have installed in the past), now if i want to search a deleted but purchased app i have to see ALL THE ENDLESS LIST !!
    Hope someone can help m please, sorry for my english, im spanish spoken...
    Check out the screen, is in spanish...

    swipe the cloud icon left and hit hide

  • How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    As with the Mail app on a Mac, the iPhone's Mail app stores all email recipients in a list of previous recipients which is separate from the address book or contacts. The email address autofill feature when addressing an message pulls from Contacts and from the list of previous recipients.
    Different from the Mail app on a Mac, there is no access to the list of previous recipients with iOS on an iPhone, iPod Touch, or iPad to remove a previous recipient from the list, or to add a previous recipient to the address book or contacts that is not already entered - not at the present time anyway.
    The only way to purge the list of previous recipients at the present time is by restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup, which will start being re-populated again with every sent message.

  • Delete songs from the purchased list

    Is there any way to delete songs from the purchased library list?

    I no longer like the song, so I would like to get rid of it. If I was tired of a CD, I would get rid of it. It seems like I should be able to do the same thing with the purchased list.

  • How to delete an individual file from the'Recents' list on an Android tablet? Not the original file in the documents library.

    I have a samsung note 8 tablet. I used to be able to delete files from the recents list, but don't know how to do it in the newest version.

    I don't think you can remove just one file from this list.

  • Unable to delete a file from the downloads list of...

    i am an e7 user. I was recently downloading a couple of videos at the same time when my phone hanged and had to be restarted. When it did restart, most of the files had to be redownloaded. All except one. The downloads list claims that the file has been saved. The video plays bt isnt completely downloaded.
    The problem now is that i cant delete the video through the file manager. The error msg says web:already in use.. When i tried deleting the file from the downloads list of the web browser, there was a similar msg.
    So how do i remove this file from my phone??
    I tried downloading a couple of file managing softwares bt that didnt really help....
    Solved!
    Go to Solution.

    Retry after clearing the Browser Cache.. If that does not solve.. Reboot the phone and try again...

  • I have huge lag with Safari's Reading List using a rMBP. I have probably 80 articles saved, which is likely the cause of the lag. Is there any way to export that list of articles so as to be able to delete them from Reading List but still have a record?

    I have huge lag with Safari's Reading List using a rMBP. I have probably 80 articles saved, which is likely the cause of the lag. Is there any way to export that list of articles so as to be able to delete them from Reading List but still have a record of the articles I intend to read?

    I'm currently dealing with this issue myself, except that my rMBP has NO articles in the reading list.  It's a brand new rMBP too, purchased just this week, with the 2.6 Ghz Processor & 16GB of RAM.
    Let's see what we can find.  I may just take it back to the Apple Store.

  • After Delete in Linked list...unable to display the linked list

    Hi...i know that there is an implementation of the class Linked Link but i am required to show how the linked list works in this case for my project...please help...
    Yes..I tried to delete some objects in a linked list but after that i am not able to display the objects that were already in the linked list properly and instead it throws an NullPointerException.
    Below shows the relevant coding for deleting and listing the linked list...
    public Node remove(Comparator comparer) throws Exception {
         boolean found = false;
         Node prevnode = head;          //the node before the nextnode
         Node deletedNode = null;     //node deleted...
         //get next node and apply removal criteria
         for(Node nextnode = head.getNextNode(); nextnode != null; nextnode = nextnode.getNextNode()) {
              if(comparer.equals(nextnode)) {
                   found = true;
                   //remove the next node from the list and return it
                   prevnode.setNextNode(nextnode.getNextNode());
                   nextnode.setNextNode(null);
                   deletedNode = nextnode;
                   count = count - 1;
                   break;
         if (found) return deletedNode;
         else throw new Exception ("Not found !!!");
    public Object[] list() {
         //code to gather information into object array
         Node node;
         Object[] nodes = new Object[count];
         node = head.getNextNode();
         for (int i=0; i<count; i++) {
              nodes[i] = node.getInformation();  // this is the line that cause runtime error after deleting...but before deleting, it works without problem.
              node = node.getNextNode();
         return nodes;
    }Please help me in figuring out what went wrong with that line...so far i really can't see any problem with it but it still throws a NullPointerException
    Thanks

    OK -- I've had a cup and my systems are coming back on line...
    The problem looks to be the way that you are handling the pointer to the previous node in your deletion code. Essentially, that is not getting incremented along with the nextNode -- it is always pointing to head. So when you find the node to delete then the line
       prevnode.setNextNode(nextnode.getNextNode());will set the nextNode for head to be null in certain situations (like if you are removing the tail, for instance).
    Then when you try to print out the list, the first call you make is
    node = head.getNextNode();Which has been set to null, so you get an NPE when you try to access the information.
    Nothing like my favorite alkaloid to help things along on a Monday morning...
    - N

  • How can I delete the reading list in Safari on iPad 2?

    I would like to delete the reading list in Safari on my iPad 2. How do I have to do it?

    You can't delete the reading list portion of the bookmarks window. It is built into the app so you can't delete it. That is not optional.
    You can delete items from the reading list by swiping Across the item in the reading list to bring up a red Delete button. Then tap that button to delete the item from the list.

  • How to Delete an IP address in the Hotsync list?

    Hi I wonder if you could help me
    How do I delete a computer on the Hotsync list? I currently have 3 IP addresses and 2 are no longer valid in the drop down list on the Hotsync screen.
    Thanks in advance.
    Douglas Gateman
    Post relates to: Palm TX
    Post relates to: Palm TX

    Are you talking about the hotsync on your device you see these two that are no longer valid?
    If so then launch the hotsync application, then tap at the top left hand corner so you get a drop down menu, under that menu you will see Connection Setup highlight the ones you want to get rid of and select delete.
    Post relates to: Centro (Sprint)

  • How do you delete items from the reading list?

    How do you delete items from the reading list?

    I'm trying to mark your reply as "solved my problem", but I can't see where to mark it. I tried to mark it in the email that came to me with your answer, but it went to a screen that said NOT FOUND. Help?

  • I am having an issue where whenever I am at the document list and do edit, to copy or delete a document the iPad locks up. Happens for both pages and numbers. Also happens on my iPhone, but only once in a while. Help.

    I am having an issue with both Pages and Numbers on my iPad. Whenever I am at the document list page and use "edit" to make a copy of a document or delete it, the iPad locks up. Happens almost every time. Also happens on my iPhone but only once in a while. Thought of completely redoing the iPad, but if it happens on the phone as well, won't help. ???

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

Maybe you are looking for