Marking items in one playlist updates other playlists

I'm trying to manage 2 ipods on 1 imac by keeping a single library and a separate playlist for each ipod; mine and my wife's. The problem I have is that when I check items on my ipod's playlist, it also checks the same song in the library and the same song in my wife's playlist... if she has the same song. Now, when she plugs in her ipod, it has some of my songs checked in her playlist. Of course when she unchecks then, it unchecks them in my playlist, and so on. All this makes it a real pain to keep only the songs we each want only on our own ipods.
Is there any way to prevent the songs from being selected in one playlist when I check a song in another?
Thanks much in advance.

I think you'd be better off to have everything in the library with a checkmark and just drag what you want into your playlist. Drag what the wife wants into hers. Then each sync your own list. I really think it would be much easier and more efficient.
Diane Wordsmith

Similar Messages

  • How to  move items from one JList to other

    Can u pls help me out to implement this(I m using Netbeans 5.5):
    I want to move items from one JList to other thru a ADD button placed between JLists, I am able to add element on Right side JList but as soon as compiler encounter removeElementAt() it throws Array Index Out of Bound Exception
    and if I use
    removeElement() it removes all items from left side JList and returns value false.
    Pls have a look at this code:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
    Object selItem = jList1.getSelectedValue();
    int selIndex = jList1.getSelectedIndex();
    DefaultListModel model = new DefaultListModel();
    jList2.setModel(model);
    model.addElement(selItem);
    DefaultListModel modelr = new DefaultListModel();
    jList1.setModel(modelr);
    flag = modelr.removeElement(selItem);
    //modelr.removeElementAt(selIndex);
    System.out.println(flag);
    }

    hi Rodney_McKay,
    Thanks for valuable time but my problem is as it is, pls have a look what I have done and what more can b done in this direction.
    Here is the code:
    import javax.swing.DefaultListModel;
    import javax.swing.JList;
    public class twoList extends javax.swing.JFrame {
    /** Creates new form twoList */
    public twoList() {
    initComponents();
    //The code shown below is automatically generated and we can�t edit this code
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jList1 = new javax.swing.JList();
    jButton1 = new javax.swing.JButton();
    jScrollPane2 = new javax.swing.JScrollPane();
    jList2 = new javax.swing.JList();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jList1.setModel(new javax.swing.AbstractListModel() {
    String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
    public int getSize() { return strings.length; }
    public Object getElementAt(int i) { return strings[i]; }
    jList1.addListSelectionListener(new javax.swing.event.ListSelectionListener() {
    public void valueChanged(javax.swing.event.ListSelectionEvent evt) {
    jList1ValueChanged(evt);
    jScrollPane1.setViewportView(jList1);
    jButton1.setText("ADD>>");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    jButton1ActionPerformed(evt);
    jScrollPane2.setViewportView(jList2);
    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(31, 31, 31)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 44, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jButton1)
    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addContainerGap(78, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    layout.setVerticalGroup(
    layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addGroup(layout.createSequentialGroup()
    .addGap(62, 62, 62)
    .addComponent(jButton1))
    .addGroup(layout.createSequentialGroup()
    .addContainerGap()
    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))))
    .addContainerGap(159, Short.MAX_VALUE))
    layout.linkSize(javax.swing.SwingConstants.VERTICAL, new java.awt.Component[] {jScrollPane1, jScrollPane2});
    pack();
    }// </editor-fold>
    //automatic code ends here
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
            jList1 = new JList(new DefaultListModel());
            jList2 = new JList(new DefaultListModel());
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now trying with this code it is neither adding or removing and the value �null� is coming in �selItem� .It may be bcoz JList and Jlist are already instantiated in automatic code. So, I tried this:
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
             Object selItem = jList1.getSelectedValue();
             System.out.println(selItem);
            ((DefaultListModel) jList1.getModel()).removeElement(selItem);
            ((DefaultListModel) jList2.getModel()).addElement(selItem);
    //Now with this as soon as I click on �jButton1�, it is throwing this error:
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: twoList$1 cannot be cast to javax.swing.DefaultListModel
            at twoList.jButton1ActionPerformed(twoList.java:105)
            at twoList.access$100(twoList.java:13)
            at twoList$3.actionPerformed(twoList.java:50)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
            at java.awt.Component.processMouseEvent(Component.java:6038)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
            at java.awt.Component.processEvent(Component.java:5803)
            at java.awt.Container.processEvent(Container.java:2058)
            at java.awt.Component.dispatchEventImpl(Component.java:4410)
            at java.awt.Container.dispatchEventImpl(Container.java:2116)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
            at java.awt.Container.dispatchEventImpl(Container.java:2102)
            at java.awt.Window.dispatchEventImpl(Window.java:2429)
            at java.awt.Component.dispatchEvent(Component.java:4240)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)

  • How to move items from one list to other

    hi all,
    in jsp page i have twolist boxes. i want to move item from one list to other list on click of add or move button. can u plz suggest me an answer for the above. thank u
    Regards sangeet

    This link should help. Remove from one list and add to the other using Javascript.
    http://www.mredkj.com/tutorials/tutorial006.html

  • Standard procedure to transfer Inventory Items from one Warehouse to other

    Dear All,
    Please let me know what is the standard procedure to be followed while transferring Inventory Items from one warehouse to other warehouse through SDK. Right now I am using sql statements to deduct and add the items to and from warehouse. Its not working properly.  Please let me if any business object is provided by SAP to achieve this functionality.
    Regards,
    Noor Hussain

    Hello Noor,
    You can use stocktransfer object:
    Private Sub PostStockTransfer()
            Dim oDoc As SAPbobsCOM.StockTransfer = oCompany.GetBusinessObject(BoObjectTypes.oStockTransfer)
            oDoc.DocDate = Date.Today()
            oDoc.FromWarehouse = "01"
            oDoc.Lines.ItemCode = "A0001"
            oDoc.Lines.WarehouseCode = "02"
            oDoc.Lines.Quantity = 10
            If oDoc.Add = 0 Then
                sbo_application.MessageBox("Stock transfer Issued")
            Else
                sbo_application.MessageBox(oCompany.GetLastErrorDescription)
            End If
        End Sub
    Regards
    János

  • How to move items from one account to other account - posting program

    Hello,
    I have FI documents that are posted on clearing account and on other side to costs. But now I need to move open items from clearing account to new clearing account(s) - something like "rename account". Is there any standard program or do you have any idea for programing a customer program?
    Thanks zd.

    Hi,
    use report <b>rfbibl00</b> with tcode FB05
    (look 1st to the documentation of this report with se38/sa38)
    A.

  • When playing songs in iTunes playlist, How do you keep the next song from jumping to next song? I am working on song list updating other tracks info and then the next song starts and I lose my spot in song list?

    When playing songs in iTunes playlist, How do you keep the next song from jumping to next song? I am working on song list updating other tracks info and then the next song starts and I lose my spot in song list?

    Max OSX 10.6.8, iTunes 11.1
    I had a similar problem: I wanted to synch my playlist to my iphone. I like to have my playlist sorted by genre. But under each genre, albums are not sorted by the track numbers. This is a problem, especially when I am listening to club mixes when the DJ smoothly transitions from 1 track sequentially to the next one. Under the properties of each audio file, the Track Numbers and Disc Numbers are already there.
    My perfect solution was to turn On Sorting - Sort Album under View>Show View Options. Then, select all the songs in that album (Shift click, Cmd click, etc) , and Edit multiple item information (Cmd I). You will see Info-Video-Sorting-Options buttons. Click on Sorting. Then, under Sort Album, Enter the name of the album. Then OK.
    You should now have the playlist sorted by Genre, then each album individually sorted by track numbers. On your playlist you should see, if you scroll right, the column added called "Sort Album".
    Hope this helps.

  • I have the same songs showing up on 2 playlists on my Ipod. How do I remove the songs from one playlist and leave them on the other playlist?

    I have the same songs showing up on 2 playlists on my Ipod. How do I remove the songs from one playlist and leave them on the other playlist?

    Hi tmilbut,
    Welcome to the Support Communities!
    The information below may be able to answer your questions about how to delete items from a playlist on an iPod.
    iPod Nano User Guide - Remove items from a playlist - page 23
    http://manuals.info.apple.com/MANUALS/1000/MA1624/en_US/ipod_nano_user_guide.pdf
    Remove items from a playlist:
    1 On the Home screen, tap Music > Playlists, then tap the playlist you want to edit.
    2 Flick down, then tap Edit.
    3 Tap next to the item you want to delete, then tap Delete when it appears on the right.
    4 When you finish, tap Done.
    Delete a playlist:
    1 On the Home screen, tap Music > Playlists.
    2 Flick down, then tap Edit.
    3 Tap next to the playlist you want to delete, then tap Delete when it appears next to the playlist.
    If you tapped the wrong playlist, tap the one you want to remove.
    4 Tap Delete, or tap Cancel if you change your mind.
    5 When you finish, flick up, then tap Done (or swipe right to return to the Home screen if you cancel).
    Cheers,
    - Judy

  • Since the latest update I am unable to carry a search from one playlist over to another.  Is there something in settings that would allow me to do this?

    Since the latest update I am unable to carry a search from one playlist over to another (example: looking for one song or one artist over several different playlists looking for duplicates).  Is there something in settings that would allow me to do this?

    The T1i was first supported by Camera Raw 5.4 which is only compatible with CS4 and later
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    Some options:
    Upgrade to CS6
    Join the Cloud
    Download the free Adobe DNG converter, convert all T1i Raw files to DNGs then edit the DNGs in CS3
    Camera raw, DNG | Adobe Photoshop CC

  • IPhone plays only one playlist and won't others

    Hi guys,
    can anyone help me; I have my iPhone for so long time, always updated with latest version of software, but recently after latest update 3.1.3. iPod plays only one playlist and won't play any other. Also can't enter any other artist file or videos. When I try to, Ipod closes! The rest of phone works fine.
    Could it be problem with latest update? How can I reset latest update?
    Thanks!

    The latest update works fine for most people, but your's might not have been applied correctly for some reason.
    Try the standard troubleshooting steps in order:
    Restart your phone: Press and hold the Sleep/Wake button for a few seconds until a red slider appears, and then drag the slider. Then press and hold the Sleep/Wake button until the Apple logo appears.
    Reset your phone: Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears.
    Restore your phone: Restore: http://support.apple.com/kb/HT1414
    Make an appointment to have an Apple Retail Store Genius look at your phone. http://www.apple.com/retail/geniusbar/
    If you're in the US, call U.S. iPhone technical support: 1-800-MY-IPHONE (1-800-694-7466)
    If somewhere else, find the contact number here: http://www.apple.com/support/contact/phone_contacts.html

  • My ipod nano 7th gen no longer shows "Playlists" in the music menu. No changes made other than deleting one and adding one playlist to those synced. Synced fine in late February. Not working as of 3/7/2014.

    My ipod nano 7th gen no longer shows "Playlists" in the music menu. No changes made other than deleting one and adding one playlist to those synced. Synced fine in late February. Not working as of 3/7/2014.

    I would either say that the iOS is correpted due to a software glitch or y have have a hardware problem like bad memory locations that are corrupting the iOS.
    - Restore from backup via iTunes. This will install a fresh copy of the iOS. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.   This will elimate corruptin in the backup causing the problem.          
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Want podcasts in Playlist to play one after the other

    Friends:
    I want to have all the podcasts in my playlist play one after the other. I read in some other post about creating an on-the-go playlist using the "enter" button.
    Can someone please explain what this means and how to do it? I'm a bit lost with just that information.
    Thanks,
    Migs

    Well...repeat will make the entire list play over and over. I understood that you wanted a list of podcasts where you could start the first one and have the list play through without stopping after each one.
    Oftentimes, people will put their podcasts into a playlist and can't figure out why the first one plays and then stops, not automatically continuing on to the next podcast. The default on iTunes will set podcasts to Skip When Shuffling. So, if a user has a tendency to use the Shuffle feature, then their playlist is going to show 1 of 1, play one podcast and then stop. To avoid this, you need to select the podcasts and deselect Skip When Shuffling. (And make sure that Shuffle is turned off.)
    Does that make sense?
    Diane Wordsmith

  • My apple tv seems to have only located one playlist from itunes.  how do I access the others?

    Hey everyone.  My apple tv is working great, however, its only accessing one playlist from my itunes on my computer.  How do I get it to recognize the other playlists?

    Try turning homesharing off and on again if these playlists have been created recently, otherwise there may be something in the playlists that are causing a problem, try experimenting with new smaller playlists to see if you can see any patterns.

  • I changed itunes options the other day to only synch one playlist and now when I open itunes I can't access my library.

    I changed itunes options the other day to only synch one playlist and now when I open itunes I can't access my library or any playlists. 

    I think I fixed this problem a few years ago by literally copying and pasting all my audio content into the iTunes library folder. I can't remember what is called of the top of my head and I don't know if this will still work.

  • Why cannot I drag and drop songs from one playlist to another?

    Actually I have two questions.  I just updated from Leopard to snow leopard.  Now when I import songs, it says "Do you want to import to burn playlist?"  I click "yes".  Then when it is finished copying, I go to "playlists" on the top of the screen and click on the "burn playlist" and it says there are no items.  Where did the songs go.  I would like to burn a playlist that I imported this way.  I haven't tried arranging songs in the order I want them yet, but now see that is an issue also.  I also used to see a list of my playlists on the left side of the screen and the songs within each of those playlists when I clicked on them and easily could drag and drop songs from one playlist to another.  How do I do the same functions that I used to do before I updated? Does this update make it impossible to do the same functions as before?  Where can I find a "manual" of sorts to direct me to explain this new format?  If there is no way to do these things, I will have to say that I want my old iTunes back.  Can I do so???  Actually, the only reason I updated was so that I could play pix and movies from my camera into iPhoto.  When I did so, it said I had to update other programs to get iPhoto to work.  I am trying very hard not to be very frustrated.  PLEASE HELP!!!!!!!!!!!!!!!!!!

    After poking around for a while figured how to do things in this new iTunes.  Not as intuitive as the old one.  Sorry I don't have time to tell what I figured out.  Maybe some other time.

  • ITunes Match downloaded all but one playlist???

    I just subscribed to iTunes Match. I have iphone 4 and ipod touch, 3rd generation (5.1.1). Anyway, iTunes Match downloaded all my songs and playlists except for ONE playlist. My iTunes Match is turned on in iTunes and I updated iTunes match 2 times today. All playlists are there except one. The songs area all in iTunes match as well, just not the playlist. I cannot figure out why all my playlists are accessible on my iphone and ipod except for one. This playist is still on my MacBrook Pro (new 2012) , and plays just fine on my laptop - can someone assist as to how to get iTunes match to accept this other playlist? (Of course, its the one I use the most.)
    Thanks

    Thanks - tired that, as well.
    I finally called Apple Support after much frustration.
    Evidently, iTunes Match is quite particular about what it can upload. Since one of my most recently purchased albums from iTunes included a digital booklet, it was also included as part of the album when I made the playlist. iTunes Match will only match items in basic format, no videos, etc. After I removed the Digital booklet (like an extra on a cd album), the playlist then downloaded no problem....sneaky.
    Thanks, anyway - perhaps this post will help someone solve the same (yet simple) mystery.
    R

Maybe you are looking for

  • Problem in sales order change via BAPI

    We are in AFS system and we try to reduce a quantity in sales order via BAPI. We recive back an error 8w 280. We are not able to find wich is and where is a problem. Does anyone have experince on that problem/error message Thanks in advance Andrea

  • Final cut to motion

    am trying to "send to motion" a sequence (actually just audio) from fcp to motion and keep getting a "general error" message and motion wont launch. help please....

  • Can I buy multiple AppleCare  services for the same device?

    I'm buying an IPhone here in US, but I'm going to Brazil for a long time. Must I buy AppleCare in Brazil in order to have warranty insurance there? Is it possible to buy AppleCare+ in US and also in Brazil, for the same IPhone?

  • Task Details - Active Core Time and ms to hh:mm:ss conversion bug

    Hey all,   In a Azure Batch App Job, each task has a "Active Core Time" value set when it completes. There is a bug in the conversion of milliseconds to hours/minutes/seconds. It appears to overflow on a day (Core time > 24 hours) These are from an A

  • HT1937 can i service my Iphone battery that i bought from singapore in indonesia??

    i've bought My Iphone 3gs from Singapore, and now i've gottten problem with the battery,the power so quick drain out.. and then i've brought my iphone 3gs to the apple store in jakarta(indonesia) to be service.. but the apple store in jakarta(indones