Drag and Drop in List View

When in the List view in Finder, I would like to drag and drop a folder in Terminal to cd to that path. However, it does not appear that List view allows dragging and dropping at all even to copy files within Finder. Is it by design? I like List view because it allows me to see the tree view of folders like in Windows Explorer. Thanks.

Works here. I've never had any issue selecting anything in list view (the only one I ever use in Finder windows) and dragging & dropping into a Terminal window and getting its path. Create a new admin user account, log into it, and see if the behavior persists.

Similar Messages

  • Can't drag and drop from page view

    Can't drag and drop from page view to desktop even though plus icon shows up for duplicating the page.  On Mac 10.9.2 Acrobat XI. I don't want to extract through the menu and associated dialogues.  Its slow and cumbersome.

    Hi Peterbruce,
    Acrobat for Windows will let you select pages in the Pages panel and drag them to your desktop, but that isn't an option in Acrobat for Mac OS. You can drag thumbnails from the Pages panel in one doc, to the Pages panel in another, however.
    Best,
    Sara

  • Issue : drag and drop from list control to tree control

    Hi,
    I was trying a drag and drop from list control to tree control. I have used some sample data to populate list and tree controls .
    It is working fine . except one problem ..
    Prob : when i drag an item to tree control .. it gets added .. now tree contains (X+1) data in list .. say X is the inital number of nodes in a tree node.
              now if i drag another item from list to last item in the tree node  .. i.e at X+1 index. .. it throws null pointer exception.
    I am considerably new in flex programming . looking for help from experts ..
    Below is my code :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="horizontal"
                    creationComplete="init()">
        <mx:Script>
            <![CDATA[
                import mx.controls.listClasses.IListItemRenderer;
                import mx.rpc.events.FaultEvent;
                import mx.rpc.events.ResultEvent;
                import mx.utils.ObjectUtil;
                import mx.collections.ICollectionView;
                import mx.core.UIComponent;
                import mx.managers.DragManager;
                import mx.events.DragEvent;
                import mx.controls.Alert;
                import mx.controls.Label;
                import mx.events.CloseEvent;
                private var homePath:String="/home/e311394/dndTest/";
                private var destPath:String="/home/e311394/dndDest/";
                private var eid:String="e311394";
                private var actn:String;
                [Bindable]
                private var cm:ContextMenu;
                private var cmi:ContextMenuItem;
                [Bindable]
                private var dp:ArrayCollection;
                private function init():void
                    cmi=new ContextMenuItem("Remove");
                    cmi.enabled=true;
                    cmi.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, contextMenuItem_menuItemSelect);
                    cm=new ContextMenu();
                    cm.hideBuiltInItems();
                    cm.customItems=[cmi];
                    cm.addEventListener(ContextMenuEvent.MENU_SELECT, contextMenuItem_menuSelect);
                    list.contextMenu=cm;
                private function contextMenuItem_menuSelect(evt:ContextMenuEvent):void
                    list.selectedIndex=lastRollOverIndex;
                private function contextMenuItem_menuItemSelect(evt:ContextMenuEvent):void
                    var loclSelectedRow:Object=list.selectedItem;
                    var lostrSelectedMenuItem:String;
                    lostrSelectedMenuItem=evt.target.caption;
                    if (loclSelectedRow != null)
                        var obj:Object=new Object()
                        obj.label=loclSelectedRow.label as String;
                            //Alert.show(obj.label);
                    if (lostrSelectedMenuItem == "Remove")
                        if(loclSelectedRow!=null)
                        var pth:String=homePath.concat(loclSelectedRow.label);
                        //Alert.show(pth);
                        //FlexDnDRemoteService.process(eid,"delete",pth,"-"); 
                        var coll:ArrayCollection=list.dataProvider as ArrayCollection;
                        if (coll.contains(loclSelectedRow))
                            coll.removeItemAt(coll.getItemIndex(loclSelectedRow));
                public function onTreeDragEnter(event:DragEvent):void
                    event.preventDefault();
                    DragManager.acceptDragDrop(event.target as UIComponent);
                    tree.showDropFeedback(event);
                protected function onTreeDragOver(event:DragEvent):void
                    event.preventDefault();
                    event.currentTarget.hideDropFeedback(event);
                    try
                        var index:int=tree.calculateDropIndex(event);
                    catch (e:Error)
                        DragManager.showFeedback(DragManager.NONE);
                        return;
                    tree.selectedIndex=index;
                    var draggedOverItem:Object=tree.selectedItem;
                public function onTreeDragExit(event:DragEvent):void
                    event.preventDefault();
                    tree.hideDropFeedback(event);
                private function showAlert():void
                    Alert.yesLabel="Move";
                    Alert.noLabel="Copy";
                    Alert.buttonWidth=70;
                    Alert.show("Copy / Move ?", "Confirm", Alert.YES | Alert.NO | Alert.CANCEL, this, alertListener, null, Alert.OK);
                private function alertListener(eventObj:CloseEvent):void
                    var result:Boolean=false;
                    if (eventObj.detail == Alert.CANCEL)
                        //Alert.show("CANCEL");
                        return;
                    if (eventObj.detail == Alert.YES)
                        //Alert.show("YES");
                        result=true;
                    else if (eventObj.detail == Alert.NO)
                        //Alert.show("NO");
                        result=false;
                    var index:int=tree.calculateDropIndex(treedropevt);
                    //Alert.show("Drop Pos" + index.toString());
                    /* var treeList:ArrayCollection=tree.dataProvider as ArrayCollection;
                       Alert.show(" index"+index+"Length "+treeList.length);
                       if(index > treeList.length)
                       Alert.show("Returning");
                       return;
                    var items:Array=new Array();
                    if (treedropevt.dragSource.hasFormat("items"))
                        items=items.concat(treedropevt.dragSource.dataForFormat("items") as Array);
                    var parentItem:Object;
                    parentItem=getObjectTarget();
                    /* if (tree.dataDescriptor.isBranch(tree.indexToItemRenderer(index).data))
                       parentItem=tree.indexToItemRenderer(index).data;
                       else
                       var dropParentPackage:Object = tree.mx_internal::_dropData.parent as Object;
                       Alert.show("HAck"+dropParentPackage.toString());
                       parentItem=tree.getParentItem(tree.indexToItemRenderer(index).data);
                       //Alert.show("Lenght "+ObjectUtil.getClassInfo(parentItem).properties.length);
                    //Alert.show("Lenght "+ObjectUtil.getClassInfo(parentItem).properties.length);
                    var position:int=0;
                    /* if(ObjectUtil.getClassInfo(parentItem).properties.length==0)
                       Alert.show("Returning");
                       return;
                    if (parentItem != null)
                        try
                            while (tree.indexToItemRenderer(index).data != parentItem)
                                //Alert.show(tree.indexToItemRenderer(index).data.toString());
                                if (index > 0)
                                    index--;
                                //Alert.show("Insiade");
                                position++;
                        catch (e:Error)
                            Alert.show("Catch" + index.toString());
                            return;
                    for each (var item:Object in items)
                        var obj:Object=new Object()
                        obj.label=item.label as String;
                        if (parentItem != null)
                            //Alert.show("ADDED");                       
                            tree.dataDescriptor.addChildAt(parentItem, obj, position++);                       
                        else
                            //Alert.show("PARENT NULL");
                            tree.dataDescriptor.addChildAt(tree.selectedItem, obj, position++);                       
                        var spth:String=homePath.concat(item.label);
                        //Alert.show(spth);   
                        var dpth:String=destPath.concat(item.label);
                        //Alert.show(dpth);
                        if (result == true)
                            removeItems();
                                //FlexDnDRemoteService.process(eid,"move",spth,dpth);
                        else
                            //FlexDnDRemoteService.process(eid,"copy",spth,dpth);
                        tree.validateNow();
                public function getObjectTarget():Object
                    var dropData:Object=tree.mx_internal::_dropData as Object;
                    if (dropData.parent != null)
                        return dropData.parent;
                    else
                        // if there is not parent (root of the tree), I take the root directly
                        var renderer:IListItemRenderer=tree.indexToItemRenderer(0);
                        return renderer.data;
                public function removeItems():void
                    //remove moved elements
                    var items:Array=treedropevt.dragSource.dataForFormat("items") as Array;
                    var coll:ArrayCollection=list.dataProvider as ArrayCollection;
                    for each (var item:Object in items)
                        if (coll.contains(item))
                            coll.removeItemAt(coll.getItemIndex(item));
                private var treedropevt:DragEvent;
                public function onTreeDragDrop(event:DragEvent):void
                    treedropevt=event;
                    showAlert();
                    event.preventDefault();
                    tree.hideDropFeedback(event);
                public function resultHandler(event:ResultEvent):void
                    Alert.show("Success", "Status");
                public function faultHandler(event:FaultEvent):void
                    Alert.show(event.fault.faultString, "Failure");
            ]]>
        </mx:Script>
        <mx:ArrayCollection id="listDP">
            <mx:Object label="File1.dnd"/>
            <mx:Object label="File2.dnd"/>
            <mx:Object label="File3.dnd"/>
            <mx:Object label="File4.dnd"/>
            <mx:Object label="File5.dnd"/>
        </mx:ArrayCollection>
        <mx:Number id="lastRollOverIndex"/>
        <!--
             <mx:ArrayCollection id="treeDP">
             <mx:Object label="/home">
             <mx:children>
             <mx:Object label="dummy1.ks"/>
             <mx:Object label="dummy2.ks"/>
             <mx:Object label="e493126">
             <mx:children>
             <mx:ArrayCollection>
             <mx:Object label="/home/e493126/sample1.ks"/>
             </mx:ArrayCollection>
             </mx:children>
             </mx:Object>
             </mx:children>
             </mx:Object>
             </mx:ArrayCollection>
        -->
        <mx:ArrayCollection id="treeDP">
            <mx:Object label="/dndDest">
                <mx:children>
                    <mx:ArrayCollection>
                        <mx:Object label="sample1.ks"/>
                        <mx:Object label="sample2.ks"/>
                        <mx:Object label="sample3.ks"/>
                        <mx:Object label="sample4.ks"/>
                        <mx:Object label="sample5.ks"/>
                        <mx:Object label="sample6.ks"/>
                    </mx:ArrayCollection>
                </mx:children>
            </mx:Object>
        </mx:ArrayCollection>
        <mx:List id="list"
                 itemRollOver="lastRollOverIndex = event.rowIndex"
                 width="50%"
                 dragEnabled="true"
                 dataProvider="{listDP}"
                 labelField="label"
                 allowMultipleSelection="true"
                 dragMoveEnabled="false">
        </mx:List>
        <mx:Tree id="tree"
                 width="50%"            
                 dragEnabled="true"            
                 dataProvider="{treeDP}"            
                 dragEnter="onTreeDragEnter(event)"
                 dragOver="onTreeDragOver(event)"
                 dragExit="onTreeDragExit(event)"
                 dragDrop="onTreeDragDrop(event)"
                 labelField="label"
                 liveScrolling="true">
        </mx:Tree>
        <mx:RemoteObject id="FlexDnDRemoteService"
                         showBusyCursor="true"
                         destination="FlexDnD">
            <mx:method name="process"
                       result="resultHandler(event)"
                       fault="faultHandler(event)"/>
        </mx:RemoteObject>
    </mx:Application>
    Thanks,
    Rajiv

    Ya , i have searched and have used the same code.
    But needed to customize few things like:
    stop dnd in same tree
    drop some item into a folder ..( onto it ) etc
    have achieved the same .. but this issue ..
    i think the tree dataprovider (contents internally is not being updated .. only the UI)
    any suggestions ?
    - Rajiv

  • More friendly drag-and-drop from grid view to folder

    From within the grid view, I do a multiple selection and drag the pictures to a folder on the left, to move all the pictures to that folder. If in the folder there is already a file with the same name as one of the selected pictures, the whole operation is cancelled. It is extremely annoying. LR might instead pop up a dialog asking if I still want to move the pictures that can be moved. Even better, the dialog should give options to overwrite the file in the destination folder, or to automatically re-name either file and stack them.

    ThatBenGuy wrote:
    On the page itself (icloud.com/iwork) it states "To get started, launch [Pages, Numbers, Keynote] on your iOS device and turn on iCloud."  This would lead me to believe you need to have the iOS version before you can even try using the icloud.com/iwork to upload files.
    I personally am not paying $10 just to test this, but if anyone else has tested this, it would be great to either confirm or deny this beyond just what I'm reading from it.
    Well, I have paid those 30 $ ( well 24 Euros ) for keynote,numbers and pages and yes you absolutely need at least one of these apps on your Device in order to unlock the "drag and drop" solution in the Browser. In other words - if you do not own a iDevice or not have one of that apps, you can't use icloud.com/iwork and its upload features at all.
    After all it is only for iOS iwork; Mac iwork09 does not sync to the cloud at all, regardless of "documents and data" set to yes in icloud on OSX.  On the contrary if you enable the same feature on your iOS5 device and set the iwork apps to store their documents in icloud, the syncing does start. So it kinda makes sense to force the presence of the iOS apps.
    iwork on iOS is pretty good, all 3 apps are high quality, come with those typical awesome templates and have tons of options to print,share and sync; but beware of the cloud storage thing : randomly documents in iCloud just delete themself.Go figure in the support forum for iwork for ios here - 100s users have experienced lost data using iwork for iOS in the cloud; So I turned this whole thing off again and sync my documents old fashioned via iTunes.

  • Drag-and-drop tree list from files/folder

    Hello all. I'm new to Flex and I'm looking for some help or
    for someone to point me in the right direction. I want to write a
    simple AIR application to accept a multiple text files (or a folder
    full of text files) when the files/folder is dragged into a tree
    list. The file/folder name will be the node name. When selected,
    the contents of the file will be displayed in a text area. The text
    file will contain a 4 x 4 number matrix with each column separated
    by a tab and each row separated by a return. (I plan on plotting
    the numbers in the matrix in the future).
    What I'm most confused about is how to go about
    dragging-and-dropping files into a tree list and creating item
    names based on the file/folder name? And does the file content need
    to go into an array collection?
    Maybe I'm going about this in a difficult way. If there is an
    easier way, I'd appreciate it if someone could share. Thank you
    all.

    I have the same problema and I´m not able to find the reason.
    The solution to get the event raised has been to copy configurations from wd standard appl FPM_TEST_DND_FORM and use my own Z feeder class : all  seems to work perfectly , but , if I try to do it from scratch the event  FPM_DROP_COMPLETED it´s not raised .
    I´ve compared both configurations/class ( the one that I´ve done from scratch  that it doesn´t raise the event and the one that I´ve adapted copying from standard that it raises perfectly  the event) and I haven´t  seen any difference (maybe I haven´t found) .

  • Cannot move photos via drag and drop (library grid view)

    I've seen several adobe tutorials and youtube videos that show moving photos or folders by drag and drop in the library grid view.  I cannot get it to work.
    Steps:
    1. Mousedown on a photo (not the frame) in the grid
    2. Drag the mouse to a folder in the "Folder" pane (left of the grid)
    3. Mouseup on the destination folder
    Results:
    Nothing happens.  The mouse cursor doesn't change from the arrow.  There is no indication I can drag and drop.  The photos are not moved.
    The photos are stored on a NAS.  Of course I can move them around via Windows Explorer, but I want to do this from inside LR4 for obvious reasons.  From LR4, I can create new folders, but I still cannot move photos into those folders.  I also tried creating a new folder on a local drive.  Again, I was able to create the folders, but was not able to move any photos into the folder.
    What else can I do to toubleshoot this issue?

    I created a new catalog.  Imported a folder on my C drive, created a subfolder, and successfully moved photos into the subfolder.
    I tried the same steps in my original catalog and now I can move all photos (including those on my NAS).  I've been at this for 3 hours.  I have no clue why it is working now, but I guess I'm happy.  Now, it shows the stack of photos when I try to drag and drop.
    I even reverted to my original preferences file (that I backed up before deleting) and I'm still able to move the files.  Really strange.

  • Drag and drop file list to MS PowerPoint

    Hi there !
    I've implemented a Transferable that supports drag and drop of multiple files from java application to natives. I took a DataFlavor.javaFileListFlavor and my getTransferData() method returns a Vector of File. My most important files are images in different formats.
    This runs very well for most of the MS applications like Word, WordPad, Internet Explorer, File Explorer, Paint Shop Pro, .... These application import all my transferred files and show their image(s).
    But I didn't reach for doing this with PowerPoint. On dropping to PowerPoint a message appears: "PowerPoint cannot open files of type <MyFile>."
    If I drag and drop my files to the file explorer and then from there to PowerPoint it works as well as if I take the files my Transferable wrote to a temporary directory.
    What's wrong ? What's the difference between PowerPoint and most other applications ? And What can I do to transfer my files to PowerPoint ?

    Look up javax.swing.TransferHandler, java.awt.datatransfer.DataFlavor, and DataFlavor.javaFileListFlavor.

  • Drag and Drop in List

    Hi All,
    Am using List control to display the data and also the
    itemRenderer .I set the attributes,
    DragEnabled,DropEnabled,DragMoveEnabled to true and also
    have the Trash icon to remove the Items from the list.
    In the ItemRenderer am displaying the data along with
    checkbox and some other controls.While Dragging the data to the
    Trash, i can see all the controls with huge area occupied by it.
    How to avoid it? I want to display only one control say
    label while dragging it to Trash.
    Thanks,
    sankar

    http://community.adobe.com/help/search.html;jsessionid=25031D5B5C450B098539FE6373810CA9?q= dragproxy+in+adobe+flex&self=0&hl=en_US&area=0&lbl=flex_product_adobelr

  • Dvt:hierarchy node Drag and drop functionality

    Hello,
    I noticed that in the JDeveloper 11.1.2.3 Rich Client Demo that drag and drop in heirarchical views is now available. Excellent news!
    I have tried to implement this functionality in my application but I'm having a few problems.
    The demo uses the following code to get the row data....
          UIHierarchyViewer hv = (UIHierarchyViewer)dropEvent.getDropComponent();
          TreeModel model = (TreeModel)hv.getValue();
          Map dropSite = (Map) dropEvent.getDropSite();
          String dropTargetClientRowKey = (String)dropSite.get("clientRowKey");
          Employee dropTargetEmployee = null;
          if (dropTargetClientRowKey != null)
            Object dropTargetRowKey = hv.getClientRowKeyManager().getRowKey(FacesContext.getCurrentInstance(),
                                                                            hv, dropTargetClientRowKey);
            model.setRowKey(dropTargetRowKey);
            dropTargetEmployee = (Employee)model.getRowData();
          }this works for me if I alter it slightly thus
               dropTargetEmployee = (usersFromVORowImpl)((JUCtrlHierNodeBinding) model.getRowData()).getRow();and am dragging and dropping between the highest level nodes but if I drop into a lower (child) node it fails with NPE when invoking .getRowData, presumably because the model reflects the top view of the master detail model (model.getRowCount supports this theory)
    so how do I get rowdata from child levels of the HV model? Franks example 101 of dropping into a RichTree gives a List back from the dropEvent for a tree, but HV's give back a Map
    I have started to experiment with "enterContainer" on the model variable but I can't seem to extract the values of the rowKey to use, I just get "dropTargetRowKey = [oracle.jbo.Key[], oracle.jbo.Key[]]" can anyone tell me how to get the key elements out of the object returned by getClientRowKeyManager().getRowKey? It's coming back as a Singleton but I can't get the List elements out of it although I can see them when I inspect the object in the debugger
    Any help appreciated, many thanks!
    JDeveloper version 11.1.2.3

    or more simply, does anyone have an example of dragging and dropping from a root node to a child node in a heirarchy viewer using oracle database tables as the master detail via views and view links? (e.g. departments/employees)
    Thanks

  • BUG: NamedViewCriteria drag and drop as table SNAFU

    I thought I had this beat, but no: NamedViewCriteria not working when drag and dropped as filtered table.
    The gist of the problem is that my NamedViewCriteria does not filter correctly unless the read only table's "Show Filter" attribute is set to "visible".
    Pictures:
    1) Normal drag and drop of named view criteria. All items are displayed.
    http://www.williverstravels.com/JDev/Forums/Threads/2381319/Nvc4.jpg
    2) Change nothing except set "Show Filter" table attribute to "visible". Everything then works.
    http://www.williverstravels.com/JDev/Forums/Threads/2381319/Nvc6.jpg
    3) Thought I would go to the table binding, enable filtering, and enter in the text I saw in the filter box. i.e. \*:pBpKey\* , which I was hoping would allow me to set "Show Filter" to invisible. That didn't work either.
    http://www.williverstravels.com/JDev/Forums/Threads/2381319/Nvc5.jpg
    Anybody know how to get around this?
    Will

    Here's something else that is a little off, but I can see why the behavior occurs.
    The iterators of the NamedViewCriteria (the tree table) and the ViewObject iterator aren't in sync on page load. While I can see why this would be so, it would be nice (at least at first glance) if there were some way to drag and drop the NVC as a form or somehow have an NVC iterator.
    http://www.williverstravels.com/JDev/Forums/Threads/2381319/Nvc11.jpg
    http://www.williverstravels.com/JDev/Forums/Threads/2381319/Nvc12.jpg
    I came back to this and thought it a better idea to do a method call as the default activity in my task flow.
      public void markInitialRow()
        ViewObjectImpl vo = this.getFilteredBp();
        vo.setApplyViewCriteriaName("VendorsVOCriteria");
        vo.executeQuery();
      }And viola, the iterator has been filtered as well. Plus, I didn't have to go to the Tree binding and enable filtering + set BpType = V.
    Edited by: LovettWB on Apr 28, 2012 8:45 AM

  • Illustrator extension - Drag and drop is not working on mac

    During testing my extension on Mac,I noticed that drag and drop doesn't work as expected. Therefore I have created a new simple extension with two lists.
    <s:List id="lst1" label="name" dragEnabled="true">
         <tree>
              <name>a</name>
              <name>b</name>
              <name>c</name>
         </tree>
    </s:List>
    <s:List id="lst2" dropEnabled="true" dragMoveEnabled="true"> </s:List>
    This will allow lst1 items to be dragged and drop in lst2.
    This sample works fine on Windows and on Mac as AIR app  but not working as extension on Illustrator( Not able to drag and drop between list on mac).
    Any help or workaround would be appreciated.

    Thanks for quick reply and help. I am able to drag multiple files but this is giving problem in case of filename with spaces like "abc def.png". Can you please put some thoughts on this.
    DataFlavor uriListFlavor = new DataFlavor("text/uri-list;class=java.lang.String");
                   Reader in = (Reader)t.getTransferData(DataFlavor.plainTextFlavor);
                   BufferedReader br = new BufferedReader(in);
                   String uriStr;
                   while ((uriStr = br.readLine()) != null)
                       URL url = new URL(uriStr);
                       String category = GalleryUtils.contentsPanel.getCurrentCategoryPath();
                       GalleryUtils.generateILPFromFile(new File(url.getFile()), category);
                   }Thanks
    Kanni

  • Cant drag and drop from file-roller to nautilus when using List View

    Hi, im using file-roller and i can only use drag and drop feature from file-roller when i use Icon View. If i select List View i cant drag and drop.
    Is that an expected behavior or its a bug? Is there a patch or work around? (File Roller 2.20.1 and Gnome 2.20.2)
    I think its a problem with file-roller cause in my other box, running ubuntu 7.10 i have the same problem, but i can drag and drop from ark even when using List View.
    Thx!

    Well, sorry for the double post, but after a little research i found this is a bug, actually a not yet implemented feature. There is a patch and probably its going to be merged in next version.
    Ill try to apply the patch myself, if it works could the maintainer Jan de Groot put it on the repository?
    Here is the bug: http://bugzilla.gnome.org/show_bug.cgi?id=171655
    Here is the patch: http://bugzilla.gnome.org/attachment.cg … ction=view
    Cya

  • Outlook email drag and drop to sharepoint task list

    We are using using Outlook 2007 (Soon to be switching to 2010) and Sharepoint Server 2010.
    We want to allow email drag and dropping which is accomplished through the folder list view.  However when doing this this it does not take the attachment.
    My question is, is this possible or do we need to develop an add-on for outlook?
    Thanks

    Neither be it SharePoint 2010 or SharePoint 2007, you can not do it without developing an add-on or writing additional code. Depending on your complexity of SharePoint, it is relatively easy to build an add-on if you only want to drag and drop Outlook email
    to SharePoint folder.
    SharePoint Outlook Integration add on is one of such tool which is functioning well if you have a small number of mails to transfer to SharePoint, but if you drag larger number of Outlook emails to SharePoint, it is quick slow to finish the whole process. 
    Good luck.

  • Drag and drop to view data from database

    hi,
    totally new to dreamweaver cs4, had some real helpful pointers already on there forums so thanks.
    i was wondering, how can you drag and drop in dreamweaver cs4 to display contents of a mysql database? i have worked a bit with .net vwd in past and you dragged over say a list view to display data and really just want to be able to do the same in dreamweaver cs4 but not sure what it would come under in the php menu bar or data option in menu bar?
    can anyone point me in right direction?
    many thanks
    andy

    deansy55 wrote:
    i was wondering, how can you drag and drop in dreamweaver cs4 to display contents of a mysql database?
    Read the Help pages starting here: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-78d3a .html.
    There's also a tutorial here: http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html.
    Basically, you create a recordset, and then drag the results from the Bindings panel.

  • How can I drag and drop a song from my "Purchased" list on to my i-Pod?

    I've recently updated the apple software on my PC and the new version of i-Tunes won't let me drag and drop songs from my "Purchased" list directly to my i-Pod.  I don't want to sync my i-Pod.  It will erase all the songs on my i-Pod and sync with the playlist from my PC.  I want to select just one song from my "Purchased" list and put that on my i-Pod.

    I got my own answer !!   I saw it on another post.  Select "View" and then toggle down to "View Sidebar".
    Now I can drag and drop like before. 

Maybe you are looking for

  • Refresh data in a Dynamic Document

    Hello, I'm using a Dynamic Document inside a dynpro but the data (add_text - display_document methods) are not refreshed even if I use the CL_GUI_TIMER to auto-refresh the contents of the dynpro. Any idea? Angelo

  • Error in dbms_metadata.get_ddl ...

    Hi, I am using "Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production PL/SQL Release 9.2.0.6.0 - Production" . I am trying to Execute dbms_metadata.get_ddl to get the table structure select dbms_metadata.get_ddl( 'TABLE', 'EMP', 'SCOTT' ) from d

  • Removing 10.7 from my new iMac and installing 10.6

    I just bought an iMac with Lion OS. I am having trouble connecting to my Windows 2003 server that is using Appletalk, but I need Appletalk for the other Mac's running10.4 so I was wondering if it's possible to reformet the HD on the 10.7 Lion iMac an

  • Browser out of date and can't install Adobe Flash Player

    My browser is out of date according to everything I am visiting.  I can't post pictures on twitter, some of the videos I watch have blocked plug-ins, and I can't install adobe flash player.  My computer is a MacBook Pro 10.6.4, and I would like to ke

  • TS1702 i am having error of (0xE8008001) while installing the software on my iphone please help me out ...

    i am having a problem while installing the apps on my iphone 3gs it shows the error on the 4th step while installing and the error no is 0xE8008001