Drag 'n drop dock items?

Is there a way?
Thanks in advance!

Hello and welcome to the Apple Discussions.
Maybe this will shed some light on using the Dock.
You can add icons to the Dock for applications, files, folders, servers, websites, QuickTime TV channels, and more. Some application icons in the Dock indicate the status of the application. You can view a pop-up menu with commands for the Dock icon by placing the pointer over the icon, and pressing the mouse button until the pop-up menu appears.
To add an item, drag its icon from a Finder window to the Dock. Put application icons to the left of (or above) the line in the Dock, and all other icons to the right of (or below) the line.
To arrange items in the Dock, drag them into the order you prefer.
To remove an icon from the Dock, drag it out of the Dock.
You can also add an application icon to the Dock by opening the application, then placing the pointer over its icon in the Dock, pressing the mouse button until a pop-up menu appears, and choosing Keep in Dock.
If you need further assistance, just post back.
Carolyn

Similar Messages

  • How can I drag and drop an item from one Tree control to another in LabVIEW 7.1?

    You can use the mouse up and down event on the two tree controls but the problem is making the correct selection in the second tree control. I want to be able to switch over to the selection bar of the second tree control so that I can place my item in the correct position. I know all possible workarounds with double-clicks and so on... but I really want a windows drag and drop.
    This is what I have for the moment. Please check the library below. I need to activate the selection bar of the second tree control somehow to get the position in the control. The VI below is written in LV 7.1
    Attachments:
    Drag&Drop.llb ‏65 KB

    Hi Jones,
    As far as I know this feature is currently not supported by the Tree control. A workaround, would be to use the vertical position of the mouse in the button up event to determine what line you�re dropping the item.
    If you would like the Tree control to include the drag and drop feature, please submit this as a Product Suggestion under the feedback at www.ni.com/contact.
    Good luck!
    Best regards,
    Philip C.
    Applications Engineer
    National Instruments
    www.ni.com/ask
    - Philip Courtois, Thinkbot Solutions

  • Drag and Drop UI Items vb net

    Hi everybody.
    This is my question:
    I need to use drag and drop onto an item, i really don't have any idea how to do this, if anybody can tell me something i'll be very thankful.
    I'm working with visual basic .net and SBO 2007

    Victor,
    Currently you do not have access to the Drag & Drop functionality of SAP Business One using the SAP Business One SDK.
    Apologies,
    Eddy

  • Can't use drag and drop with items

    if I want to drag a drop files the icon or doc keeps attached to the mouse and the program is freezed, os I have to restart for e.g. mail. . If I want to move items I only can copy them and poaste. can anybody help?

    Now that I'm looking at it, I don't have it... but I still have the problem:(. I rebooted the PRAM, I cleaned my permissions, run utilities checks, nothing helps, I'm at the end of my wits. I called apple - all I got was bad attitude... I don't know what to do, this disfunction makes it impossible for me to work....
    does anybody know what I could do to fix this issue?

  • Upgrade to 3.1.1 broke drag and drop form items

    after upgrading to 3.1.1 when I click the drag and drop icon in items on a form i can then move the fields around and when I hit next the page shows no fields, if I then click apply and look at the form the fields have not moved..

    Hello,
    For me this functionality is still working...
    Do you have the same in another browser? (I'm using FF)
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Drag and Drop in Item Renderer

    I created an item renderer for use in a TileList. This item
    renderer shows a thumbnail, name, and a few buttons. I want to
    enable drag but only for the image. I know it is easy to enable
    drag for Tile List items as a whole, but how do I do that for just
    part of an item, which was rendered using my custom item renderer?
    Thanks for any help!

    Have you tried to turn off drag for TileList and enable it
    only for the thumbnail? It should work.
    ATTA

  • Drag and drop multiple items

    Hi,
    I am trying to do a drag and drop where the droppable area will accept all of the drops as long as they are within the box. For some reason, it sometimes only accepts one, and other times accepts all, only if they are right on top of each other. Any help would be greatly appreciated!
    This is the drag and drop portion of the code:
    $(".drop").droppable({ accept: '.C'});
    $(".C").draggable({revert: 'invalid'});
    Files Here:https://www.dropbox.com/s/ynjd5vans42k56u/testtime.zip?dl=0

    Does this help?
    drag-and-drop utility for Edge Animate(only x-axis)

  • Dragging and dropping an item within horizontalList does not display correctly

    It appears that when I drag an item from a HorizontalList to another location within the same HorizonList, it does not display the images correctly. In my HorizontalList, I have an itemRenderer that shows the thumbnail image of the item.  I have about half a dozen items in the list and when I drag the sixth item and move to the beginning of the list, the display looks as if the first and the sixth element are switched, while in reality the resulting dataProvider array seems to have the right order, meaning the sixth element became the first element and the first element became the second element and so on. Has any one seen such a behavior and how do I rectify this? Thanks in advance. Cheers, Ramesh
    The HorizontalList def is
    <mx:HorizontalList id="myList" width="92%" height="100%" columnWidth="90" rowHeight="105" rollOverColor="#f26722"
                        itemRenderer="com.myListRenderer" labelField="name" dataProvider="{arr}" columnCount="10"
                        click="updateView(event)" dragEnabled="true" dropEnabled="true" dragMoveEnabled="true" >
    </mx:HorizontalList>
    The renderer code is
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" horizontalScrollPolicy="off" verticalScrollPolicy="off" horizontalAlign="center"
            verticalAlign="middle" width="90" height="90" verticalGap="0" creationComplete="init()" >
    <mx:Script>
        <![CDATA[
            private function init():void {
                imageFile.source = data.url;
                imageName.text = data.name;
        ]]>
    </mx:Script>
        <mx:Image id="imageFile" scaleContent="true" width="90" height="70" horizontalAlign="center" verticalAlign="middle"/>
        <mx:Label id="imageName" height="18" width="90" textAlign="left"/>
    </mx:VBox>

    Hi Alex,
    In your blogpost on itemRenderers, you discussed something relevant in a brief section on "Background color changes when data changes". However, I could not find any reference for use on dataChange event handler. Can you pelase point me to the right article?
    Implementing dataChange event instead of creationComplete did not solve my issue. I still had the issue. Thanks, Ramesh

  • Drag and drop an item from "FileSystemTree" to "Tree"

    Hi I'm new to Flex/AIR and I want to ask if it's possible to drag an item from a FileSystemTree to a Tree component.
    I've tryied with no success, my results are shown in the attached image.
    Thanks in advance!

    a better explanation of what I need is here in AIR section, probably the right place where post this question.

  • Cannot drag and drop library items to master page

    I'm using Windows 8 and just downloaded Muse. In following along the tutorial (https://helpx.adobe.com/use/how-to/create-website.html) the instructor has us download some graphics. One is a library item, which opens fine in the panel, but I cannot complete the action the instructor does, which is to grab the color swatches from the library panel and place them on the main template. Any ideas?
    TIA
    Liz

    I called Adobe support and it turns out that my desktop computer is 32 bit. When I tried it later on my newer laptap which is 64 bit, I can follow along on with the video without any problem. The 'updated' version on my desktop is a slighter different version than the one for my laptop. Don't know if that helps anyone else.

  • Unable to complete drag and drop; items stick to cursor.

    Basically I am having the exact same issue as, http://discussions.info.apple.com/thread.jspa?threadID=1372514&start=0&tstart=0 .
    Sometimes when attempting to drag and drop an item the item will not drop and just become stuck to the cursor, across applications. The only way to drop the item seems to be force quitting Finder, or sometimes just mashing the Esc key.
    I've had this issue on 10.6.5, and 10.6.6. A fresh install did not rectify the problem. What is incredibly annoying is the issue just comes and goes. The only thing I can narrow it down to is a Wacom driver for my Intuos. As far as I can remember this issue only started after installing that driver.
    Has any one else experienced this behaviour, and do you have a Wacom Intuos?

    it seems there is no way.
    See note 1797073
    Is there someone with a better solution?

  • How to drag and drop item from list to another item in list and change their positions

    I have a list field with multiple items. I want to select one item from list and drag and drop to another item in the list
     after drop item on another item the position of items should be change. (Example:- if I select 1st item from list and drag and drop this item to 4th item in list after drop that item position of both item should be changed 1st item on 4th position and 4th item on 1st position)
    I don't know how to do this.Please help me to find the solution.

    Hello Zoltan,
    I do not believe that kind of option is built into the listboxes, but I was able to have similiar functionalities using property nodes. I have included an example program that I put together.
    The big difference is that instead of dragging, you double click on the item you want to transfer. To highlight items as you go down the list, all you need to do is set the value to that list number.
    Hope this helps you out!
    Attachments:
    Temp.vi ‏33 KB

  • 10.7 Lion Install - Drag and Drop no longer works

    Just upgraded to Lion and my 'drag and drop' featuer works no where... No in finder (desktop to trash), Safari (customizing toolbar), or Dock (removing or rearranging icons). The rest of the track pad and all new gestures work flawlessly, but when I try to drag and drop an item it gets picked up and I can move it around, but it never 'drops'. The only way to get it off my cursor is to click the Apple logo in the top left corner.
    I've done some digging but all the tips I find aren't pertinent to my situation, or reference files that I somehow can't find on my machine. Any help would be greatly appreciated!

    I am having this issue too and bbiron is right, the only way to get the ghosted image of what you want to Drop detached from your cursor is to click the Apple menu.
    In addition to all the intances bbiron mentioned, which are all replicable by me as well, it also happens when I'm trying to drag links or tabs in Safari/Chrome.
    For the record, I did an upgrade from Snow Leopard and not a clean install of Lion. I'm using a MBP5,1 if that makes any difference as well.

  • WPF Treeview Drag and Drop

    Hi All,
    I faced an when using WPF Treeview Drag and Drop function. Firstly, I can achieve Drag and Drop in a general TreeViewItem. I followed this article in CodeProject: http://www.codeproject.com/Articles/55168/Drag-and-Drop-Feature-in-WPF-TreeView-Control
    This scenario works for the TreeViewItem looks like below,
    <TreeView x:Name="_countries" AllowDrop="True" MouseLeftButtonDown="OnTMouseDown">
    <TreeViewItem Header="USA">
    <TreeViewItem Header="New York"/>
    <TreeViewItem Header="Canifonia"/>
    <TreeViewItem Header="Sourth East">
    <TreeViewItem Header="Houston"/>
    <TreeViewItem Header="DAL"/>
    <TreeViewItem Header="SAN"/>
    </TreeViewItem>
    </TreeViewItem>
    <TreeViewItem Header="China">
    <TreeViewItem Header="Beijing"/>
    <TreeViewItem Header="Jiangsu">
    <TreeViewItem Header="Nantong"/>
    <TreeViewItem Header="Suzhou"/>
    <TreeViewItem Header="Wuxi"/>
    </TreeViewItem>
    </TreeViewItem>
    <TreeView.ItemContainerStyle>
    <Style TargetType="TreeViewItem">
    <EventSetter Event="TreeViewItem.DragOver" Handler="OnTDragOver"/>
    <EventSetter Event="TreeViewItem.Drop" Handler="OnTDrop"/>
    <EventSetter Event="TreeViewItem.MouseMove" Handler="OnTMouseMove"/>
    </Style>
    </TreeView.ItemContainerStyle>
    </TreeView>
    My Question is if i custom the TreeView Item like:
    <TreeView.ItemTemplate>
    <HierarchicalDataTemplate DataType="{x:Type local:QuestionInfo}" ItemsSource="{Binding Infos}">
    <StackPanel Orientation="Horizontal">
    <TextBlock Text="{Binding Path=Name}"/>
    <TextBlock Text="{Binding Path=Score}"/>
    </StackPanel>
    </HierarchicalDataTemplate>
    </TreeView.ItemTemplate>
    1. How to achieve the Drag and Drop function?
    2. Since the data is binding to TreeView, When i Drag and Drop item. I want to keep the same order in my data source. In other words, If i drag the third TreeView Item to the first item.
    3. How to change the Drag and Drop animation?
    Could you please do me a favor?
    Thanks a lot.

    Hello Ricky,
    For question 1, "How to achieve the Drag and Drop function?"
    I would recommend you read a blog from here:
    http://wpftutorial.net/DragAndDrop.html?showallcomments
    The important part of this code is the following line:
    // Get the dragged ListViewItem
    ListView listView = sender as ListView;
    ListViewItem listViewItem =
    FindAnchestor<ListViewItem>((DependencyObject)e.OriginalSource);
    And the FindAnchestor is to find the parent of your selection:
    // Helper to search up the VisualTree
    private static T FindAnchestor<T>(DependencyObject current)
    where T : DependencyObject
    do
    if( current is T )
    return (T)current;
    current = VisualTreeHelper.GetParent(current);
    while (current != null);
    return null;
    Please consider the following scenario, if you have a textbox in a canvas, if you want to drag and drop your textbox, you are using the function about to search for it parent object, the canvas and then you are moving that canvas. In this way we can drag
    and drop a item which may contains the textbox you mentioned.
    A complete sample can be checked from a great blog below:
    http://openszone.com/solution/how-to-accomplish-drag-and-drop-wpf-treeviewitem
    And for the question about the Drag and Drop animation, do you mean you want to "create a preview effect for the operation"
    If so, try this blog:http://blogs.msdn.com/b/marcelolr/archive/2006/03/03/showing-drag-drop-feedback-on-the-wpf-adorner-layer.aspx
    The second question "data source", I think we can talk about it if you can share how you defined your datasource. That is more reasonable then just guess how your source will be filled into treeview.
    Anyway, I would recommend you check Flankin's blog for some details about this.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 1.4.2 JList to JList drag n drop example?

    Could anyone provide (or point me to) a jsdk1.4.2 example of drag and drop from one JList to another? What I'd really like is multiple (say 3 or 4) JLists that can all drag and drop multiple items between each other (supporting multi-select).

    Look for ExtendedDnDDemo [url http://java.sun.com/docs/books/tutorial/uiswing/misc/dnd.html]here.

Maybe you are looking for