Drag and drop data from datagrid to textInput with flex.

Hi,
  Cay please help me out on this problem..
  I have a datagid with some values..I have a textInput on the UI..
There is one "+" button on the UI..when i click on that button it will add one more TextInput box to the UI below the first TextInput..Like thiseverytime  when you click on the "+" button it will add one more TextInput to the UI just below the previous one..
Now i want to drag the values from datagrid to Textinput boxes..User may drag two or more vlaues to each textInput upon his requirement..
How can i drag ...could you please help me out on thi issue....
I am not able to drag the values to TextInputs:
Here is my code:::Could anyone please help me...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   width="100%"  height="100%" creationComplete="init()">
<mx:Script>
            <![CDATA[
                import mx.containers.HBox;
                import mx.controls.Alert;
                import mx.managers.PopUpManager;
            //    import Components.testPopUpWindow;
                import mx.core.UIComponent;
                import mx.containers.TitleWindow;
                import mx.core.DragSource;
               // import mx.core.IUIComponent;
                import mx.managers.DragManager;
                import mx.events.DragEvent;
                import mx.controls.Alert;
                import mx.controls.Text;
                import flash.geom.Point;
             import mx.collections.ArrayCollection;
             [Bindable]
            private var dpFlat:ArrayCollection = new ArrayCollection([
                                 {JobName:"A"},
                                {JobName:"B"}, 
                                {JobName:"C"},
                                {JobName:"D"}, 
                                {JobName:"E"},
                                {JobName:"F"},
                                {JobName:"G"}]);
              private function box_addChild():void
                    var box:HBox = new HBox();
                       box.width=716;
                       var descriptionTextInput:TextInput = new TextInput();
                       var strButton:Button=new Button();
                      strButton.label="Submit";
                     descriptionTextInput.width=174;
                     descriptionTextInput.height=58;
                     box.addChild(descriptionTextInput);
                    /*     box.addChild(strButton); */
                    //    strButton.addEventListener(MouseEvent.CLICK,submitButtonClicked);
                     interactiveQuestionsVBoxID.addChild(box);
      public function init():void
        this.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
        this.addEventListener( DragEvent.DRAG_DROP, handleDrop );
      public function acceptDrop( dragEvent:DragEvent ):void
        if (dragEvent.dragSource.hasFormat("items"))
          DragManager.showFeedback( DragManager.COPY );
          DragManager.acceptDragDrop(TextInput(dragEvent.currentTarget));
      var pt:Point;
      public function handleDrop( dragEvent:DragEvent ):void
       // var dragInitiator:UIComponent = dragEvent.dragInitiator;
        //var dropTarget:UIComponent = dragEvent.currentTarget as UIComponent;
        var items:Array  = dragEvent.dragSource.dataForFormat("items") as Array;
        /* pt = new Point(dragEvent.localX, dragEvent.localY);
        pt = dragEvent.target.localToContent(pt);
        var img:TextInput = new TextInput();
          img.x=dragEvent.localX;   img.y=dragEvent.localY;
       // img.x=pt.x - Number(dragEvent.dragSource.dataForFormat("mouseX"));
          //img.y=pt.y - Number(dragEvent.dragSource.dataForFormat("mouseY"));
        img.width = 50;
        img.height=50;
        img.setStyle("fontSize",20);     // img.source="assets/" + items[0].id + ".png";
        img.text=items[0].JobName.toString();
         img.buttonMode = true;
         img.mouseChildren = false;
          TextInput(event.currentTarget).text=itemsArray[0].label;
         var itemsArray:Array = event.dragSource.dataForFormat("items") as Array; */
                TextInput(dragEvent.currentTarget).text=items[0].label;
         public function beginDrag( mouseEvent:MouseEvent ):void
        var dragInitiator:TextInput = mouseEvent.currentTarget as TextInput;
        var dragSource:DragSource = new DragSource();
       // dsource.addData(this, 'node');
        dragSource.addData(this.mouseX, 'mouseX');
        dragSource.addData(this.mouseY, 'mouseY');
        //parent.addChild(dragImg);
        //dragSource.addData(mouseEvent.currentTarget.text, "txt");
        try{
            var dragProxy:TextInput=new TextInput();
            dragProxy.text = mouseEvent.currentTarget.text;
               // Alert.show("Text isss"+dragProxy.text);
               dragProxy.setActualSize(mouseEvent.currentTarget.width,mouseEvent.currentTarget .height)
            // ask the DragManger to begin the drag
            DragManager.doDrag( dragInitiator, dragSource, mouseEvent, dragProxy );
        catch(e){}   
              ]]>
    </mx:Script>
<mx:Canvas id="c1" width="100%" height="100%" y="10" x="10" >
<mx:DataGrid id="d1" dataProvider="{dpFlat}"  x="10" y="119" dragEnabled="true"   dragMoveEnabled="true"  height="229" width="176"/>
<!--<mx:Label id="lbl"   text="Job Name" width="195" height="28"  x="0" y="0" fontWeight="bold"/>-->
<mx:Box id="questionLabelMode" direction="horizontal" width="270.5" height="24" y="76" x="211">
    <mx:Label name="Answer" width="173" text="Answer" fontWeight="bold"/>
    <mx:Button label="+" width="70" click="box_addChild();" fontWeight="normal"/>
    <!--<mx:Button label="-" width="71" fontWeight="bold" click="box_deleteChild();"/>-->
</mx:Box>
<mx:VBox id="interactiveQuestionsVBoxID" y="119"  height="100%" width="270.5" horizontalScrollPolicy="off" x="211">
                 <!--<mx:Box id="boxID" direction="horizontal" width="268" height="58">-->
                     <mx:TextInput id="t1" width="174" dragDrop="handleDrop(event)"    height="58"/>
                     <!--<mx:Button label="Submit" id="b1" />-->
              <!--    </mx:Box>-->
</mx:VBox>
        </mx:Canvas>
</mx:Application>

Hi Satya,
I have done it for you ...please copy the below whole code and try to run the application. You can see the application working for you.
You have done two mistakes --- you have added the event listeners on this object........but this refers to current object(i.e; your main application file but not TextInput).
So you need to addEventListeners for your textinput "t1" but not to this...
If you add the listeners on this then in your "acceptDrop" and "handleDrop" functions you will get the "dragEvent.currentTarget" as your main app but not TextInput(Since you have added listeners to "this "). If you addListeners on t1 then its correct.
Also you need to add the eventListeners for the newly added textboxes as I done in "box_addChild" function in below code.
Also in the handleDrop function the line of code where you are assigning the text is wrong ......it should be the below code...
TextInput(dragEvent.currentTarget).text=items[0].JobName;
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   width="100%"  height="100%" creationComplete="init()">
<mx:Script> 
  <![CDATA[
                import mx.containers.HBox;
                import mx.controls.Alert;
                import mx.managers.PopUpManager;
            //    import Components.testPopUpWindow;
                import mx.core.UIComponent;
                import mx.containers.TitleWindow;
                import mx.core.DragSource;
               // import mx.core.IUIComponent;
                import mx.managers.DragManager;
                import mx.events.DragEvent;
                import mx.controls.Alert;
                import mx.controls.Text;
                import flash.geom.Point;
           import mx.collections.ArrayCollection;
           [Bindable]
           private var dpFlat:ArrayCollection = new ArrayCollection([
                                 {JobName:"A"},
                                {JobName:"B"}, 
                                {JobName:"C"},
                                {JobName:"D"}, 
                                {JobName:"E"},
                                {JobName:"F"},
                                {JobName:"G"}]);
            private function box_addChild():void
                var box:HBox = new HBox();
                box.width=716;
                var descriptionTextInput:TextInput = new TextInput();
                var strButton:Button=new Button();
                strButton.label="Submit";
                descriptionTextInput.width=174;
                descriptionTextInput.height=58;
                descriptionTextInput.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
       descriptionTextInput.addEventListener( DragEvent.DRAG_DROP, handleDrop );
                 box.addChild(descriptionTextInput);
                /*     box.addChild(strButton); */
                //    strButton.addEventListener(MouseEvent.CLICK,submitButtonClicked);
                 interactiveQuestionsVBoxID.addChild(box);
public function init():void
     t1.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
     t1.addEventListener( DragEvent.DRAG_DROP, handleDrop );
      public function acceptDrop( dragEvent:DragEvent ):void
        if (dragEvent.dragSource.hasFormat("items"))
          DragManager.showFeedback( DragManager.COPY );
          DragManager.acceptDragDrop(TextInput(dragEvent.currentTarget));
      private var pt:Point;
      public function handleDrop( dragEvent:DragEvent ):void
       // var dragInitiator:UIComponent = dragEvent.dragInitiator;
        //var dropTarget:UIComponent = dragEvent.currentTarget as UIComponent;
        var items:Array  = dragEvent.dragSource.dataForFormat("items") as Array;
        /* pt = new Point(dragEvent.localX, dragEvent.localY);
        pt = dragEvent.target.localToContent(pt);
        var img:TextInput = new TextInput();
          img.x=dragEvent.localX;   img.y=dragEvent.localY;
       // img.x=pt.x - Number(dragEvent.dragSource.dataForFormat("mouseX"));
          //img.y=pt.y - Number(dragEvent.dragSource.dataForFormat("mouseY"));
        img.width = 50;
        img.height=50;
        img.setStyle("fontSize",20);     // img.source="assets/" + items[0].id + ".png";
        img.text=items[0].JobName.toString();
         img.buttonMode = true;
         img.mouseChildren = false;
          TextInput(event.currentTarget).text=itemsArray[0].label;
         var itemsArray:Array = event.dragSource.dataForFormat("items") as Array; */
          var currTarget:* = dragEvent.currentTarget;
          //interactiveQuestionsVBoxID = currTarget.getChildByName("interactiveQuestionsVBoxID");
            TextInput(dragEvent.currentTarget).text=items[0].JobName;
      public function beginDrag( mouseEvent:MouseEvent ):void
        var dragInitiator:TextInput = mouseEvent.currentTarget as TextInput;
        var dragSource:DragSource = new DragSource();
       // dsource.addData(this, 'node');
        dragSource.addData(this.mouseX, 'mouseX');
        dragSource.addData(this.mouseY, 'mouseY');
        //parent.addChild(dragImg);
        //dragSource.addData(mouseEvent.currentTarget.text, "txt");
        try{
            var dragProxy:TextInput=new TextInput();
            dragProxy.text = mouseEvent.currentTarget.text;
               // Alert.show("Text isss"+dragProxy.text);
               dragProxy.setActualSize(mouseEvent.currentTarget.width,mouseEvent.currentTarget .height)
            // ask the DragManger to begin the drag
            DragManager.doDrag( dragInitiator, dragSource, mouseEvent, dragProxy );
        catch(e:Error){}   
     ]]>
</mx:Script>
    <mx:Canvas id="c1" width="100%" height="100%" y="10" x="10" >
  <mx:DataGrid id="d1" dataProvider="{dpFlat}"  x="10" y="119" dragEnabled="true"   dragMoveEnabled="true"  height="229" width="176"/>
  <mx:Box id="questionLabelMode" direction="horizontal" width="270.5" height="24" y="76" x="211">
      <mx:Label name="Answer" width="173" text="Answer" fontWeight="bold"/>
      <mx:Button label="+" width="70" click="box_addChild();" fontWeight="normal"/>
  </mx:Box>
  <mx:VBox id="interactiveQuestionsVBoxID" y="119"  height="100%" width="270.5" horizontalScrollPolicy="off" x="211">
    <mx:TextInput id="t1" width="174" dragDrop="handleDrop(event)" height="58"/>                    
  </mx:VBox>
</mx:Canvas>
</mx:Application>
If this post answers your question or helps, please kindly mark it as such.
Thanks,
Bhasker Chari

Similar Messages

  • Drag and drop data from Numeric Control or Numeric Array to excel file

    I have two inquirries about drag and drop:
    1. How to drag and drop data from a Numeric Array or Numeric control to excel file
    2. How to drag and drop data from a Numeric Array or Numeric control to an Numeric array Indicator?
    The item 2, I tried it with the event structure, but it didnt work.
    Please do reply.
    mytestautomation.com
    ...unleashed the power, explore and share ideas on power supply testing
    nissanskyline.org
    ...your alternative nissan skyline information site

    There are very good drag and drop examples that ship with LabVIEW.  Have you looked these over to see if they can be modified for your needs?
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

  • Really stupid that you can't drag and drop photos from Finder into Events

    There is no way in iPhoto to do what I want and need to to, to wit, drag and drop photos from the Finder into existing iPhoto Events.
    It really doesn't make sense that you can't do this. First of all, calling these groups Events to begin with is not smart; in my case, a group of photos in a folder on the Finder is rarely all from one photo session or so-called "event"--- instead of Events they should just be called Groups or something, and you should be able to drop individual photos into them. I have thousands of family photos that were accumulated on my hard drives over the years, some scanned in from film negatives, slides, or prints, others from digital cameras, and when I have changed Macs and hard drives over the years, every time a folder of photos was moved from an old hard drive to a new one, or regrouped into various folders, the photos seem to have acquired new dates of origin, etc.
    Anyway, what I mean is, if Events are all time based, then somebody like me who has thousands of photos with all sorts of dates of origin, mostly unrelated to the date that the photo was actually shot, is screwed. I have old photos with new dates of origin and other mismatches between photos and the dates when they were actually shot or scanned.
    My gripe is, again, that when I find photos on my hard drives that belong in certain iPhoto Events that have already been created, I cannot just drag these photos from the Finder and drop them into the Events they belong in. Instead, the stupid program creates a new Event from each photo I try to drop into an existing Event. That means I have to chase these new photos all over the place inside of iPhoto, trying to figure out where each new photo (now called an "Event") has ended up, so that I can drag and merge it into the Event I wanted it to go into in the first place. A real pain in the neck. It simply takes too long to do this for each photo added.
    What this means is that iPhoto is not going to be a practical way to organize for a person like me until Apple makes it possible to simply drop any photo from the Finder into an existing Event. There should be an option to allow that. I'm really surprised there is not one. <edited out by Hosts>
    Tom

    Tom, iPhoto will not overwrite photos with the same name. I have plenty of photos with the same name in the same event. Each photo most likely has an internal handler that manages the photo, and not just the name of the file.
    I agree with you that this is sub-optimal, and (IMO) I think what happened is iPhoto 6 had rolls, and they came up with a really cool interface for mousing over those rolls, and decided it was more consumer friendly (and because film is a thing of the past) to call them events, rather than rolls. I think it was worth a shot, but they just slightly missed.
    Right now in iPhoto08, any serious organization is done in folders and albums. Personally, I think they need to combine the two concepts -- the great "mouse over" view of events with the organization abilities of folders and albums. I'd like an albums view where I can mouse over the albums. Actually, Aperture 2's interface for organization is more functional than iPhoto, so I am hoping some of that benefit creeps into the next iPhoto release.
    What I do is: I use events for high level grouping (like Winter 2007) and I organize folders and albums to break that down further ("trip to Montreal" "Christmas" etc.). But I do it backwards. I fill albums first, then I organize events.
    When I drag in pictures to iPhoto, first I make the target album in iPhoto that I want to populate, then I drag the photo directly to that album (not to events). iPhoto automatically puts the photo into the album I created and also into a new event. Later, I go into events, right-click on this new event to "open event in separate window" then I move around the events view, to drop in the pictures from the "import" event I just created. If I move all the pictures into other events, iPhoto automatically deletes the event I just emptied. You could skip the event organization all together if you wanted to, but you'd lose the cool mouse-over feature, which can be handy.
    One nice thing about having events AND albums is you can have the photo just once in iPhoto, in an event, but then have the photo appear in as many albums as you want (as well as projects and web galleries) all while only having one photo on your hard drive. So, there are benefits to events, but I think iPhoto is missing just a couple little bits of organizational ability to make it perfect. (and yes, I've submitted this all to Apple as feature requests)
    Just in case you don't know -- events don't have any hierarchy. That is, you can't nest events. But you can have folders with subfolders, and any folder can contain albums. Albums cannot have sub-albums, and folders don't hold photos. Only albums hold photos, and folders (or sub-folders) hold albums. Try create some folders and albums and you'll get the hang of it. One other issue that Apple needs to address. When you create a new folder or album, it doesn't put it right where you want it, but rather puts it at the bottom of the list, so you have to drag it up to where you want it. Try it out, and you'll see what I mean, then submit it as a feature request to improve that.
    I agree it's not perfect, but it's not too bad once you get used to it. And the benefits of working with the rest of the features of iPhoto is worth it. I'm just really hoping they do a few tweaks on the next release. They are near greatness here. They could just use a little nudge on the last bits. (in my opinion of course. Others may disagree, but I've talked to enough people who have the same issues you are having to know we are not alone on this).

  • I can't drag and drop songs from library to playlists

    Unable to drag and drop songs from library into playlists, however I can drop them above or below playlists. That is no help in editing playlists! Seems to be after last iTunes up date.
    Tkank you

    My mistake totally!!! I confused a new playlist folder with a new playlist.
    Just wanted to pass that along.

  • Drag and drop between two Datagrid

    I have to drag and drop data between two different datagrid but in drop side i have to modify the item.
    How Can I do it?
    Thanks
    A

    Instead of using a DataGrid, you could use a Tile or TileList component.
    DataGrid does not have your desired behavior.
    You could create a custom component that uses states to display data in a DataGrid or Tile/TileList and switch states as appropriate.
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.chikaradev.com
    Adobe Flex Development and Support Services

  • Drag and drop a photoshop layer into TextInput

    I've been able to complete a drag and drog from a file to a TextInput in my CS Extension but what I really want to do is drag and drop a layer into a textinput or any other control so I can pick up what layer it is and apply actions on it.
    Anyone got ideas of how I could achieve this in Extension Builder?

    What app is this?

  • HT5934 My iMac won't let me drag, and drop anything from the desktop to other files on the desktop, or anywhere else.

    My iMac won't let me drag, and drop anything from the desktop to other files on the desktop, or anywhere else.

    This procedure is a diagnostic test. It makes no changes to your data.
    Please triple-click anywhere in the line below on this page to select it:
    ls -@Oaen | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message.
    The Terminal window doesn't show the output. Please don't copy anything from there.
    If any personal information appears in the output, anonymize before posting, but don’t remove the context.

  • Why can't I drag and drop songs from my PC onto my iTunes?

    Hi, I am unable to drag and drop music from my PC to iTunes.  I have always done it this way.  Anyone else having problems?

    Hi B-rock, yes I have tried adding to library but still no luck.  I am also up to date on the latest version on my iPhone and iPod.
    I ended up burning the MP3's to a CD then transporting them to my iTunes when I inserted the CD into my PC!
    This has only started happening since I updated!

  • Why can't I drag and drop music from a folder on my PC into my iTunes window?

        Why can't I drag and drop music from a folder on my PC into my iTunes window?
    I have not found any article that has answered this question. They have come up with things like open the side bar and it will work, or you are using wrong format of music. Now this all happened when I upgraded to iTunes 10 and has not worked since and it worked fine before. Music format is correct, I have even gone as far as copying a file already in iTunes and trying to add it again. As soon as the files enters the frame of iTunes the music files icon the pointer is carrying turns into a circle with a slash through it.
    ITunes Ver. is 11.1.5.5  Windows Ver. is Windows 8.1 Pro with Media Center
    Files I have tried adding are standard MP3, 256 kbps purchased AAC Audio file, MP3 converted by iTunes into a 256 or 320 kbps AAC Audio file. None can be draged and droped but all can added by going to File/Add File to Library...  or File/Add Folder to Library...
    Add items from your computer to your iTunes library
    Do either of the following:
    1. Drag a file or folder from the desktop to the iTunes window.If you add a folder, all the files it contains are added to your library.
    2. In iTunes, choose File > Add to Library, locate a file or folder, and click Open.
         I can add files and folders by doing number 2 above but can not doing number 1
    I have gone as far as uninstalling iTunes and reinstalling per apple procedures below.
    Steps
    1. Remove iTunes and its related components from the Control Panel
    Use the Control Panel to uninstall iTunes and related software components in the following order and restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order or only uninstalling some of these components may have unintended effects.

    I had this problem on Windows 8.1.1 and iTunes 11.2.2.3
    To resolve it from within Itunes I did :  Edit, Preferences, Sharing.
    I took the tick out of "Share my library on my local network"
    Click OK.
    Closed iTunes/
    Reopened iTunes and I can drag and drop.
    I went back into Edit, Preferences, Sharing and put the tick back and clicked OK.
    Works fine now.

  • 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.

  • HT2518 how do i or can i drag and drop files from one external drive to another ???HOW

    how do i drag and drop files from one external drive to another, i cannt get both drives to open up. only one at a time.. i have alot to learn i know but that is where i am at the time...

    You posted here so would assume you are also talking about running Windows.
    Are the drives NTFS and use on Windows?
    Are they Mac HFS formatted?
    You likely will need NTFS for OS X in one case. to mount PC and use under Mac OS Lion
    MacDrive to mount and WRITE to HFS drives under Windows

  • HT203128 I can't drag and drop music from iTunes 12 to iOS 8 iPhone 5s. How do I move music now?

    I connect the iPhone to itunes. that works. Everything shows up fine, but I can't drag and drop music from the 'music' section of iTunes 12 on my new mbp or my iMac. I used to be able to. Also, when I slide to delete songs on the iPhone, they still appear as 'ghosts' in the list on iTunes when the phone is connected - if I double click them, a exclamation mark in a circle comes up on the left of the track and it doesn't play. Can anyone help? Kind of need to get this sorted - it's bloody frustrating. I've restarted iPhone, iMac, MBP, downloaded the latest versions of iOS, OS X 10.10.3.

    you iphone does not work like a regular ipod, where you can drag and drop music, you must sync it with itunes. plug it into your computer, click on the icon that is labeled iphone. when you do this there is a section on the top that says music. click on that, then you can select playlists and artists, etc. then click apply. it should work then

  • Can't drag and drop music from itunes to Iphone

    my brother recently updated to a newer version of itunes and i can no longer drag and drop music from my itunes to my iphone! ive tried everything that i know and nothing is working! i tried checking the 'manually manage music' box, but everytime i do that it asks me if i want to erase and sync and doesnt give me another option. I dont want to do that! my songs that are on my ipod are not on my current itunes! they are lost ;( . i turned on home sharing (not sure what that did but i tried it) and i also authorized the computer... help please!

    you iphone does not work like a regular ipod, where you can drag and drop music, you must sync it with itunes. plug it into your computer, click on the icon that is labeled iphone. when you do this there is a section on the top that says music. click on that, then you can select playlists and artists, etc. then click apply. it should work then

  • Can't drag and drop songs from iTunes to ipod

    Why can't I drag and drop songs from iTunes to ipod

    Hi there ASA101,
    You may want to verify that you have "Manually Manage Music" enabled in iTunes. Take a look at the article below for more information.
    Managing content manually on iPhone, iPad, and iPod
    https://support.apple.com/kb/ht1535
    -Griff W.

  • Drag and drop files from outside of DW into DW Files Window

    When I was using Dreamweaver CS for Windows, I could drag and
    drop files from my desktop directly into the Files Window of
    Dreamweaver. But I can't do that in the Macintosh version. Am I
    doing something wrong, or is it not supported?

    No. This is not supported.
    We cannot comment on upcoming versions.

Maybe you are looking for