ITunes 10: Drag and Drop to Third Party Applications

Hello folks - I looked around for an answer to this question but I found none. I DJ events quite frequently and I use Roxio Toast to burn CD's of the sets of music I will be playing. Up through versio 9.1 of iTunes, I was able to drag and drop individual songs straight from iTunes to Toast but beginning with 9.2, I was unable to drag and drop from iTunes to any other 3rd party application. This ability is critical for what I do.
Fortunately, I had a backup of iTunes 9.1 so I went back to that version and I've ben following these discussions lookng for some resolution to this problem.
Now we have iTunes 10. I'm looking at it with some trepidation... has this problem been solved in iTunes 10? Has it even been addressed?
Thanks to any kind soul who can give me an answer.
Thanks so much,
Anthony

By re-arranging the windows, this appears to work.
i.e. left window to right window.

Similar Messages

  • With new Photos app, I can no longer drag and drop photos into other applications as I did in the past with iPhoto.

    With the new Photos app, I can no longer drag and drop photos into other applications as I did with iPhoto.  For instance, I have a photo collage app that in the past, I could just drag in the photos I wanted to include.  Now, I can DRAG the photos, but they do not DROP.  So, I have to go through the export process.  It is tedious.  What am I missing?  Where can I turn on the drag and drop feature for Photos?

    YOu're not looking in the right palce. That's inside the iPhoto Application.
    You need to look inside the iPhoto Library
    As I sid above:
    Go to your Pictures Folder and find the iPhoto Library there
    Regards
    TD

  • Why itunes wont drag and drop to FCP.

    I can drag and drop a track from itunes straight into my premier pro project on windows, but I cant drag and drop to my FCP project on the Mac. Why?

    By re-arranging the windows, this appears to work.
    i.e. left window to right window.

  • Why is there no add to button on my itunes or drag and drop feature any more?

    i can no longer transfer any media from my itunes library to my iphone. there is no 'add to' button when I click on my device, as well as  having no way to drag and drop media to the device. Any help is appriciated 

    Turn on the sidebar with ctrl-s and you should be able to add content as before.
    tt2

  • ITunes not drag and dropping/ copying music to iTunes on my mac or ipod

    I've been drag and dropping for years - that's what Macs are for.
    However, now I'm trying to repopulate my ipod with music from an external HD, it gives the errors warning or says the music's not there.
    I look at the HD in the finder - and of course it is.
    I use my ipod for teaching, so this is pretty important.
    Any ideas?

    Hm. It's worse than that - even right clicking and trying to import by opening the mp3 with iTunes doesn't work. The files 'import' but then get the alert exclamation point next to them.
    Also, iTunes isn't turning from background grey to it's colours as I try and drag n drop, FWIW.

  • How can I set up printing to queues on a Windows 2008 server directly from the iPad apps and not from third-party applications without using AppleTalk or Bonjour?

    We have a Windows 2003/2008 server-based network with a dedicated print server which we would like to be able to print to over Wi-Fi.  How can I set up the printers on the iPad without downloading a third party application such as Print Central or Print N Share?  I want to just click the arrow and "Print" then choose the printer, which doesnt show up.  I want to be able to use the existing TCP/IP-based network that we have to reach these queues, not having to install Bonjour or AppleTalk to reach them.
    Thanks,
    KMQ7

    This would really be the "Holy Grail"   right now.  I think this a feature that every large organization requires. AirPrint works on a small scale, but is not really an enterprise class application.  In addition it uses the Bonjour discovery process which is difficult in a large LAN WAN environment.  For those that would remind me, I am aware of the enhancement link 

  • Drag and Drop Image onto Native Application

    I am interested in dragging and dropping an image
    from a java app to a native app (such as MS-WORD,
    etc), i have been able to DnD text but have been
    unsuccessful with images. any tips, resources?
    Thanks

    thanks, i already saw that.
    is there a way I could drop an Image onto a native app such that when it drops, another component / object such as a frame loads?
    thanks.

  • Implement Drag and drop functionality in my application

    I want to drag image from one UIImageView to other UIImageView.
    Is there any event handle to this drag and drop functionality.
    Any one have different idea to handle this. than please reply.
    Any coding idea related to this?

    it is possible but u have to write some advance code to handle plz mention ur Forms version and other info
    Forms 10g and above possible with Java beans
    Forms 6i there is a demo in forms online help ........ Search DRAG
    To enable drag and drop on an item:
    1     Attach the PL/SQL library DRAG.PLL, which contains the  Mouse package, to your module.
    2     Create a WHEN-MOUSE-DOWN trigger on each item that can be dragged.  From this trigger, call the Click routine from the Mouse package.
    3     Create a WHEN-MOUSE-MOVE trigger on each item that can be dragged.  From this trigger, call the Move routine from the Mouse package.
    4     Create a WHEN-MOUSE-UP trigger on each item that can be dragged.  In this trigger, write your application specific code.Baig
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Drag and Drop between two java applications

    Hi,
    I am trying to implement drag and drop between two instances of our java application. When i drop the content on the target, the data flavors are transmitted properly, but i get the exception :
    java.awt.dnd.InvalidDnDOperationException: No drop current
         at sun.awt.dnd.SunDropTargetContextPeer.getTransferData(SunDropTargetContextPeer.java:201)
         at sun.awt.datatransfer.TransferableProxy.getTransferData(TransferableProxy.java:45)
         at java.awt.dnd.DropTargetContext$TransferableProxy.getTransferData(DropTargetContext.java:359)
         at com.ditechcom.consulbeans.TDNDTree.drop(TDNDTree.java:163)
         at java.awt.dnd.DropTarget.drop(DropTarget.java:404)
         at sun.awt.dnd.SunDropTargetContextPeer.processDropMessage(SunDropTargetContextPeer.java:547)
    How can i fix this ?
    Thanks a lot,
    Karthik

    Play with this;-import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.dnd.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    // Credit to bbritna who I stole it from in the 'New To ..' Forum
    public class DragComps implements DragGestureListener, DragSourceListener,
                                         DropTargetListener, Transferable{
        static final DataFlavor[] supportedFlavors = { null };
        static{
              try {
                  supportedFlavors[0] = new DataFlavor(DataFlavor.javaJVMLocalObjectMimeType);
              catch (Exception ex) { ex.printStackTrace(); }
        Object object;
        // Transferable methods.
        public Object getTransferData(DataFlavor flavor) {
               if (flavor.isMimeTypeEqual(DataFlavor.javaJVMLocalObjectMimeType))
             return object;
               else return null;
        public DataFlavor[] getTransferDataFlavors() {
               return supportedFlavors;
        public boolean isDataFlavorSupported(DataFlavor flavor) {
               return flavor.isMimeTypeEqual(DataFlavor.javaJVMLocalObjectMimeType);
        // DragGestureListener method.
        public void dragGestureRecognized(DragGestureEvent ev)    {
               ev.startDrag(null, this, this);
        // DragSourceListener methods.
        public void dragDropEnd(DragSourceDropEvent ev) { }
        public void dragEnter(DragSourceDragEvent ev)   { }
        public void dragExit(DragSourceEvent ev)        { }
        public void dragOver(DragSourceDragEvent ev) {
               object = ev.getSource(); }
        public void dropActionChanged(DragSourceDragEvent ev) { }
        // DropTargetListener methods.
        public void dragEnter(DropTargetDragEvent ev) { }
        public void dragExit(DropTargetEvent ev)      { }
        public void dragOver(DropTargetDragEvent ev)  {
               dropTargetDrag(ev); }
        public void dropActionChanged(DropTargetDragEvent ev) {
           dropTargetDrag(ev); }
        void dropTargetDrag(DropTargetDragEvent ev) {
               ev.acceptDrag(ev.getDropAction()); }
        public void drop(DropTargetDropEvent ev)    {
               ev.acceptDrop(ev.getDropAction());
                   try {
                       Object target = ev.getSource();
                      Object source = ev.getTransferable().getTransferData(supportedFlavors[0]);
                       Component component = ((DragSourceContext) source).getComponent();
                       Container oldContainer = component.getParent();
                       Container container = (Container) ((DropTarget) target).getComponent();
                       container.add(component);
                       oldContainer.validate();
                       oldContainer.repaint();
                       container.validate();
                       container.repaint();
                   catch (Exception ex) { ex.printStackTrace(); }
                   ev.dropComplete(true);
        public static void main(String[] arg)    {
              JButton button = new JButton("Drag this button");
              JLabel label = new JLabel("Drag this label");
              JCheckBox checkbox = new JCheckBox("Drag this check box");
              JFrame source = new JFrame("Source Frame");
              Container source_content = source.getContentPane();
              source.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              source_content.setLayout(new FlowLayout());
              source_content.add(button);
              source_content.add(label);
              JFrame target = new JFrame("Target Frame");
              Container target_content = target.getContentPane();
              target.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              target_content.setLayout(new FlowLayout());
              target_content.add(checkbox);
              DragComps dndListener = new DragComps();
              DragSource dragSource = new DragSource();
              DropTarget dropTarget1 = new DropTarget(source_content,
              DnDConstants.ACTION_MOVE, dndListener);
              DropTarget dropTarget2 = new DropTarget(target_content,
              DnDConstants.ACTION_MOVE, dndListener);
              DragGestureRecognizer dragRecognizer1 =
              dragSource.createDefaultDragGestureRecognizer(button,
              DnDConstants.ACTION_MOVE, dndListener);
              DragGestureRecognizer dragRecognizer2 =
              dragSource.createDefaultDragGestureRecognizer(label,
              DnDConstants.ACTION_MOVE, dndListener);
              DragGestureRecognizer dragRecognizer3 =
              dragSource.createDefaultDragGestureRecognizer(checkbox,
              DnDConstants.ACTION_MOVE, dndListener);
              source.setBounds(0, 200, 200, 200);
              target.setBounds(220, 200, 200, 200);
              source.show();
              target.show();
    }[/code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Drag and Drop attachement files to applications like web browsers

    I am able to drag and drop files from file explorer to html 5 web site.  Why can't I drag and drop outlook attachment to the same web site?  What is the difference between the two?
    In terms of development, what need to be done to make it work?  If there is more than one way, please, list them.
    Thanks in advance

    Just wanted to say hi and check if there is anything that I can do for you on this problem.If
    so, please do not hesitate to let me know and I will be happy to help.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Drag and Drop Image to native Application

    Hi there!
    I've spent quite a while now, searching for answers for my problem. I want to be able to drag and drop some JComponent - let's say a JPanel - to a native Windows application (like MS Office...). I know this is possible and I know that windows requires some special Image format (like DIB or Bitmap). Now comes the tricky part :-) I was not able till now, to get my custom Transferhandler to work to obtain this task. Does anyone have some code snippets which to something like this? Or does anyone have any good hints how to do this? I've really searched the whole net all over and didn't really find anything helpful ( not even here, or on the rockhoppertech site).
    I whould highly apprechiate some help!
    Thank you all in advance :-)
    Michael

    i have the same problem and Sun doesn't seem to have an answer to this question. The DnD works in Mac OS, but not on Window 2000/XP.

  • Drag and drop text from another application

    There used to be a really nice feature of Mail that has disappeared. I was able to select text in another application, e.g., Pages or Word or Safari, and drop it onto the Mail icon in the dock. A new message window would open with that text in the body of the message. I can still do this with images from Safari but that seems to be about it. I cannot do this with text. Has there been a change in Mail that causes this changed behavior? Is the problem in my system or Mail.app? Or is it simply my memory (the neuro part not the silicon)? Any help would be appreciated (unless the last possibility explains the problem; then I'd like to hear about it, but I wouldn't appreciate it).

    I was able to copy the text of your message and drag
    it to Mail to create a new message. Mail was open
    already. I closed Mail and tried it again, and it
    didn't work.
    Jim
    Jim, I forgot to mention that I encounter the problem whether Mail is open or closed. Also, I trashed the preferences file and created a new account with no effect. It still works with images and doesn't work with text. Strange. Jim

  • How to clear documents and data for third party applications

    Anyone can help me how to clear the documents and data for apps like facebook , i tried to delete the app and re-install but there is no change , please advise ,
    thank you.

    Manage the data on the device via iTunes.

  • Drag and Drop Problem in JTree - Application hangs

    Dear Friends,
    My application hangs when I try to pop a JOptionPane, asking user to select a option. I can't do anything as whole CPU memory is consumed by this. If I don't pop option then there is no problem at all. Everything works fine.
    Dialog is poped when user makes a drop on a node.
    OS : WIN NT 4.0 SP 6
    WEB SERVER : TOMCAT 3.2.2
    Thanx in advance

    Not sure if this will work inside classes, but in working with AS3, this would issue the command to object you just clicked, and the object you just dropped:
    // This function is called when the mouse button is pressed.
       function startDragging(event:MouseEvent):void
            event.currentTarget.startDrag();
        // This function is called when the mouse button is released.
        function stopDragging(event:MouseEvent):void
           event.currentTarget.stopDrag();

  • Drag and drop new songs to playlist in iTunes 11

    In iTunes 10 and below we were always able to add new songs to iTunes from Finder by just dragging and dropping into any playlist and it would automatically show up.
    In iTunes 11, dragging and dropping new songs to a playlist from outside iTunes adds the songs but only into the "Songs" view. We have to take an extra step to select all the songs from the "Songs" list and put them onto each playlist. This is HORRIBLE and counter-productive since I have over 200 playlists and it takes much longer to add new songs.
    Is there a way to have the songs STAY in the playlist without having to drag them from the "Songs" section? I love the new interface but this is just stupid. If I'm dragging songs onto the playlist I expect them to stay there, not require me to leave the playlist and find them in my library and come back to add it to the playlist. UGH.

    I did activate the Sidebar, but even when I have my playlist selected via the Sidebar adding songs from Finder doesn't show up in the playlist. I have so scroll all the way up to the top and find what I just imported in the main Music section where it shows my entire library. Then from there I drag the newly imported songs to the playlist I wanted.
    Sorry for the confusing description, It's probably much easier to show in person or something. But previously when I added new songs into a playlist the songs will automatically show up on the Playlist without me having to go to Music and find it in my entire library.

Maybe you are looking for