Icon for Drag&Drop

hello,
does anybody known or has anybody a special icon for Drag&Drop (something like copy or delete icons) ?
thank yuo very much for each answer!
regards,
Joana

Try looking in jre/lib/images/cursors

Similar Messages

  • A icon for drag&drop

    hello,
    could you say, how does a icon for drag&drop look? or where can I get it?
    I would put the icon in my java-program.
    thans a lot for each answer!
    best regards,
    joana

    Try looking in jre/lib/images/cursors

  • How do I unlock folders for drag/drop messages?

    Team:
    I have 2 folders in Thunderbird that will not allow me to drag/drop messages into it. I was able to do this up to about a week ago and now I can't drag/drop.
    I have restarted in safe mode but it didn't release the folders for drag/drop. I've checked the properties and it doesn't give me any options to 'unlock the folders' for drag/drop or 'copy into' or 'move into' functionality.

    Repair only rebuilds the index of the folder. That Thunderbird can not build an index is something of a worry. Normally I would point the finger at corruption. But this time I don't think so.
    Best to go back to basics here I think.
    Have you rebooted your computer?
    Tried windows safe mode with networking?
    My guess is something is locking the physical file that contains the folder mail. A reboot my release whatever it is if your not in the practice of regular cold starts.
    Either way failing that Windows safe mode with networking should see the file freed up if you start Thunderbird while in safe mode.

  • Why can't Mac users, who have multiple devices, have device icons for drag and drop, on desktop rather than iCloud, iTunes, etc. ?

    I want drag and drop in the form of icons on my iMac, from all my other Apple devices. I don't want to have to go through iCloud, iTunes and DropBox.

    What are you other apple devices?
    For an all Mac OS X set, you could write an applescript to perform the task.
    Robert

  • Is there a way for Drag & Drop answers to populate next screen?

    I'm working on a project in Captivate 7 where the user is filling out a table (1 row, 3 columns, 9 possible correct answer combinations) using drag and drop words. The user will ultimately build a table with 3 rows and 3 columns, doing 1 row at a time per screen.  I would like the user's correct answers to the rows they have already completed correctly to appear on each successive screen (but not for the entire rest of the project, just the following few screens). I have tried to get this working every which way and I can't seem to make it happen.
    The closest I have gotten is to use the "accept" panel to set each correct answer to assign its own value to a variable placed in a text caption on the following slide. However, that seems to trigger an auto-submit (I have the global "auto submit correct answers" turned off) so that the first item the user places correctly in the table advances them to the next slide even though there are still 2 more cells of the table to complete.

    Here's a shot of the intiial screen:
    As you can see, there are multiple correct combinations of answers. (Users will be children, so it does need to be very user-friendly with the ability to undo/reset answers.) In the word bank are 3 correct variable items and 6 correct values (I have it set so that only correct combinations of variables and values will be accepted as correct, so "lemonade" will never be a correct value for "age of seller", for example).
    Here's the next screen which I have made fill from selections from previous via an "on accept" advanced action (show a text caption unique to that answer and location):
    The problem with this advanced action solution is that if the user makes a selection in the first screen, then gets it partially wrong or for some other reason resets the words back to the bank, those text captions on the next screen still have been shown and will stick around, thus:
    Every solution I've attempted has had some fatal flaw in the end. What I really need to happen is a conditional action that basically says "If the contents of drop target X = drag source Y, then set VarA [on screen 2] to $text$." For example, "If the contents of drop target [Variables Cell] = Text Caption timeofday, then set $Var1$ to "Time of Day".
    I am about to throw in the towel here and just have students type in words to text boxes (these are mainly disadvantaged students I work with, so their typing skills are not great) just to utilize being able to make a user-generated variable out of text box entries.

  • Problem when creating Drag Tags Dynamically for Drag & Drop UI element

    In one of my requirement,
    I need to populate the TREE dynamically ( only 2 levels  fixed),
    This TABLE TREE is  drag enabled ( which acts as a Target & Source ) to move records to another table.
    Both tables are created at design time and are having DRAG SOURCE INFO element.
    In Modify View method,  I am trying to ADD  DROP TARGET INFO with tags for the table based on the records.
    Even after assigning it to the table(dynamicallY), it is giving dump as
    There is no DropTargetInfo in the DropOnRowTarget aggregation with this ID
    Here is the code.....
        DATA l_tags TYPE string.
        DATA lo_nd_tgt_ip_end_notes TYPE REF TO if_wd_context_node.
        DATA lt_tgt_ip_end_notes TYPE wd_this->Elements_tgt_ip_end_notes.
        DATA ls_tgt_ip_end_notes TYPE wd_this->Element_tgt_ip_end_notes.
        DATA lr_table TYPE REF TO cl_wd_table.
        DATA l_name TYPE string.
        DATA l_id TYPE string.
        data l_index TYPE string.
      IF first_time = abap_true.
    " reading the context   
    *     navigate from <CONTEXT> to <TGT_IP_END_NOTES> via lead selection
        lo_nd_tgt_ip_end_notes = wd_context->get_child_node( name = wd_this->wdctx_tgt_ip_end_notes ).
        lo_nd_tgt_ip_end_notes->get_static_attributes_table( importing table = lt_tgt_ip_end_notes ).
    " get the reference of the table
        lr_table ?= view->get_element( 'TBL_TGT_IP_ENDNOTES' ).
    "Creating DROP TARGET INFO for all the RECORDS in the Table
        LOOP AT lt_tgt_ip_end_notes INTO ls_tgt_ip_end_notes WHERE parent_key = ''.
            " Tag name & Name of  DROP TARGET INFO
          l_name = ls_tgt_ip_end_notes-ip_number.
          CALL METHOD CL_WD_DROP_TARGET_INFO=>NEW_DROP_TARGET_INFO
            EXPORTING
    *          BIND_ENABLED =
                ENABLED      = 'X'
                 ID           =  |TGT_DROP_TARGET_INFO{ sy-tabix }|   
                 NAME         = l_name
                 SCOPE        = '00'
                 TAGS         = l_name
             RECEIVING
                CONTROL      = lr_dti.
    " binding the DROP TARGET INFO to the TABLE
    CALL METHOD LR_TABLE->SET_DROP_TARGET_INFO
      EXPORTING
        THE_DROP_TARGET_INFO = lr_dti.
        ENDLOOP.
    ENDIF.
    any idea...on this.
    Thanks in Advance,
    Anil Danda
    I apologize for wrong Posting
    I  don't know, how to move this thread, it would be great, if any Moderator can move this thread to Web Dynpro ABAP forum
    Edited by: danda aneel on Mar 10, 2011 6:36 PM

    Hi,
    As far as i know , you need to insert a droptargetinfo only once in the table level not on every row.
    Try to do on design time what you are dynamically doing ? You would not get a chance to to insert a droptragetinfo on every row.

  • HT4623 Can't find icon for air drop on control center Ipad 4 ios 7.4 ?

    Can anybody tell me how to find the air drop icon  when it's not on control center  updated with 7.4 ios.

    iOS: Using AirDrop
    http://support.apple.com/kb/ht5887
    Message was edited by: Demo

  • Drag&Drop using Repeater

    Does anyone know how to do drag & drop using a Repeater
    component?
    Sample?
    Thanks,

    It does a bit, but be forewarned: this is a great way to get
    yourself into
    serious trouble, and to do so very easily. DW is not for
    those who are
    unwilling or uninterested in learning HTML and CSS.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "GoodTherapy.org" <[email protected]> wrote
    in message
    news:fthq3f$1up$[email protected]..
    > Does Dreamweaver allow for drag & drop web desig? I
    have an employee
    > needing
    > something more sphisticated than Contribute and less
    complicated then
    > dreamweaver to work on our site www.goodtherapy.org. if
    not Adobe, i'm
    > open to
    > other brands. Thanks!
    >

  • Drag & Drop Uplaod

    Hello everyone.
    I try to know if with the last functionalities of flash (and
    more particularly in FL9) there would be the possibility of
    carrying out a drag & drop file in UPLOAD (as in java). The use
    of a drag & drop java is heavy because dependent on a difficult
    JAVA installation. Under flash there is indeed the possibility of
    carrying out a UPLOAD of file by a process a little heavier ( will
    seek the file in a repertory to click more on sending…
    finally traditional use of a upload. If somebody has tracks of
    research. That would help me well (I peeled all the forums and
    google) thanks you which will answer me
    Vince

    It does a bit, but be forewarned: this is a great way to get
    yourself into
    serious trouble, and to do so very easily. DW is not for
    those who are
    unwilling or uninterested in learning HTML and CSS.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "GoodTherapy.org" <[email protected]> wrote
    in message
    news:fthq3f$1up$[email protected]..
    > Does Dreamweaver allow for drag & drop web desig? I
    have an employee
    > needing
    > something more sphisticated than Contribute and less
    complicated then
    > dreamweaver to work on our site www.goodtherapy.org. if
    not Adobe, i'm
    > open to
    > other brands. Thanks!
    >

  • Faking Drag&Drop operation to external application

    Hello,
    a rather complicated issue. in my program i have a JTable, and i can drag&drop from this jtable
    to external programs like windows explorer by clicking the mouse and moving it from the table
    to the external program.
    how can i reproduce this exact behaviour WITHOUT user intervention?
    in other words, how can i do this programmatically, creating a drop source at the start point,
    then move the mouse, and release it above a specified location on the screen?
    is this even possible in java (as we're running in a VM) ?

    it has it's problems.
    for example, if the drop point is above the source point, moving the mouse with the robot sometimes marks all entries in the table instead of performing a drag&drop operation. also, it seems that without a delay between the moves, strange things happen. so here is an updated version which workes 99% flawlessly for me.
    package trakker;
    import java.awt.Point;
    import java.awt.Robot;
    import java.awt.event.InputEvent;
    import java.util.logging.Level;
    * this thread fakes a drag & drop operation to the traktor decks
    public class LoadDeckThread implements Runnable
         Point source;          // where was the mouse pointer before operation?
         Point track;          // where is the point of the track in the jlist?
         Point target;          // where do we move the track to?
         // constructor
         public LoadDeckThread(Point pTrack, Point pSource, Point pMoveTo)
              track = pTrack;
              source = pSource;
              target = pMoveTo;
         // thread run
         public void run()
              try
                   // create a new robot
                   Robot robot = new Robot();
                   robot.setAutoDelay(100);
                   // move the mouse to the track in the jlist
                   robot.mouseMove(track.x, track.y);
                   // click and hold
                   robot.mousePress(InputEvent.BUTTON1_MASK);
                   robot.waitForIdle();
                   // move to the left to prevent list scrolling
                   robot.mouseMove(50, target.y);
                   // and to the topleft of our app
                   Point p = Util.mainWnd.getLocation();
                   robot.mouseMove(p.x, p.y);
                   // move the mouse to the specified deck
                   robot.mouseMove(target.x, target.y);
                   // wait some time (otherwise it doesn't work?)
                   //robot.delay(500);
                   robot.waitForIdle();
                   // release the mouse
                   robot.mouseRelease(InputEvent.BUTTON1_MASK);
                   robot.waitForIdle();
                   // move back to the track
                   robot.mouseMove(track.x, track.y);
                   robot.waitForIdle();
                   robot.mousePress(InputEvent.BUTTON1_MASK);
                   robot.mouseRelease(InputEvent.BUTTON1_MASK);
                   // now move back where we were
                   robot.mouseMove(source.x, source.y);
                   robot.waitForIdle();
                   robot = null;
              catch(Exception ex)
                   Util.log("Cannot invoke robot for drag&drop: " + ex.getMessage(), Level.SEVERE);
    } instead of to close tags ;=)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Don´t allow drag&drop

    In my app you can drag&drop images from the file system
    into air. but now I want to forbid to drag and drop the image
    inside the application. now I get this error message when dragging
    images inside my app:
    "TypeError: Can't get property length from null value"
    and when I browse for images and then drag them inside my app
    I get this error message:
    "ArgumentError: Error #2015: Invalid BitmapData.
    at flash.display::BitmapData()
    at flash.html::HTMLLoader/nativeOnMouseMove()
    at flash.html::HTMLLoader/onMouseMove()"
    so, how can I forbid to drag images inside my app or just
    solve these errors?
    Thanks a lot!

    sorry, but...I don´t know how to do this...
    here´s my code for drag&drop into the app:
    window.htmlLoader.addEventListener("nativeDragDrop",function(event){
    var filelist =
    event.clipboard.getData(air.ClipboardFormats.FILE_LIST_FORMAT);
    var elem = null;
    var name = null;
    if (filelist.length) {
    for (var f = 0; f < filelist.length; f++) {
    name = filelist[f].name;
    elem = document.getElementById('list5');
    elem.innerHTML += name;
    function preventDefault(event){
    event.preventDefault();
    }

  • Drag&Drop-Coursebuilder

    I'm new to all of this so please bear with me. I've created
    two pages-one a tutorial from coursebuilder and one on my own. I
    followed step-by-step and retraced all steps. I have no problem in
    setup of page (layers, interactions), however, when I preview in a
    browser (safari, exporer 7, firefox), I am unable to drag and drop
    any of the layers. As I've followed closely the tutorial and
    manual, I feel frustrated as I don't think I've missed anything,
    but...
    Any advice on this would be helpful.
    Using Dreamweaver 8 w/coursebuilder for 8
    Thanks!

    It does a bit, but be forewarned: this is a great way to get
    yourself into
    serious trouble, and to do so very easily. DW is not for
    those who are
    unwilling or uninterested in learning HTML and CSS.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "GoodTherapy.org" <[email protected]> wrote
    in message
    news:fthq3f$1up$[email protected]..
    > Does Dreamweaver allow for drag & drop web desig? I
    have an employee
    > needing
    > something more sphisticated than Contribute and less
    complicated then
    > dreamweaver to work on our site www.goodtherapy.org. if
    not Adobe, i'm
    > open to
    > other brands. Thanks!
    >

  • Drag & Drop Capabilities?

    Does Dreamweaver allow for drag & drop web desig? I have
    an employee needing something more sphisticated than Contribute and
    less complicated then dreamweaver. if not Adobe, i'm open to other
    brands. Thanks!

    It does a bit, but be forewarned: this is a great way to get
    yourself into
    serious trouble, and to do so very easily. DW is not for
    those who are
    unwilling or uninterested in learning HTML and CSS.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "GoodTherapy.org" <[email protected]> wrote
    in message
    news:fthq3f$1up$[email protected]..
    > Does Dreamweaver allow for drag & drop web desig? I
    have an employee
    > needing
    > something more sphisticated than Contribute and less
    complicated then
    > dreamweaver to work on our site www.goodtherapy.org. if
    not Adobe, i'm
    > open to
    > other brands. Thanks!
    >

  • Desktop drag and drop icon for my "other" computer

    i really need an icon for my MacBookPro desktop to reside on my Mac Pro desktop (and vice versa) so that I can just drag and drop copy (or move) data from one volume to another. sort of like what I have with my dropbox icon in the sense that I can just keep this on my desktop and in the View Pane of Finder and drag and drop items or open the volume etc.
    is this possible and i am just not getting it to work because i don't have things set to mount automatically or is there a restriction that does not allow this that I don't understand?
    i am on snow leopard and the connection is via wi, but I could plug in via ethernet when i know i will need to do this sort of moving of data a lot.
    thanks for clearing any of this up for me.
    - jon

    if as3, create a sprite or movieclip and use:
    image1.addEventListener(MouseEvent.MOUSE_DOWN,downF);
    image1.addEventListener(MouseEvent.MOUSE_UP,upF);
    function downF(e:MouseEvent):void{
    Sprite(e.currentTarget).startDrag();
    function upF(e:MouseEvent):void{
    Sprite(e.currentTarget).stopDrag();

  • How do I change the desktop Icon for an external hard drive?  I have gone to "Get Info" and tried dragging and dropping  several formats of pictures and the icon changes to the generic image of that file type.

    how can I change the desktop icon for an external hard drive.  Using LaCies and Dimple hard drives.

    One of the things I've found with OS X (at least with Snow Leopard, which is my first excursion into OS X), is that all too often the thumbnail displayed on a file, whether a file created or one downloaded, is a false thumbnail. That is, when you do a Get Info on the file the icon in the upper left is the generic icon for that file type, rather than the thumbnail displayed in Finder. Makes it a bit difficult to copy.
    Apparently Finder uses Preview in the background to generate the displayed thumbnail without actually creating one.
    What I've resorted to doing, particularly with graphic images, is to process them with GraphicConverter - I have its prefs set to automatially add thumbnails and previews. With an individual file this means opening it in GC and doing a Save As. However, a much easier and faster way is when there are two or more such files; I put them in a common folder and drop the folder onto GC. GC then opens them in a catalog view, in the process adding real thumbnails and previews to each automatically. Doesn't take long to do several hundred files that way.

Maybe you are looking for

  • IPhone Not Charging While On A Call

    My iPhone 3G (currently running 3.0) refuses to properly charge while I am on a call. I used to be able to talk and charge at the same time, but lately, it shows the 'charging' symbol for a while and then just switches to 'connected'. The first time

  • Connecting a MYSQL database in Dreamweaver

    Hi All, I'm tryting to connect a mysql database based locally and am getting the error: HTTP Error Code 404 File Not Found. Here are some possible reasons for the problem: 1) There is no testing server running on the server machine. 2) The testing se

  • UK based Apple TV defaulting to 720p 60Hz when going through HDMI matrix

    (I'm UK based) I am trying to run my AppleTV through an HDMI 1.3 matrix switch (HDCP compatible) so it can feed two TV's and switch between a Sky HD input and the AppleTV input. Sky HD sends an HDMI 1080i 50Hz signal protected by HDCP and this is pas

  • Use Blackmagic Intensity Pro to Monitor FCP7

    So I'm trying to help my brother get this to work over the phone, but he's not as technical as I am. It doesn't sound that hard, but he can't seem to get any output to this card and I can't seem to find a setup guide online. He's running a 2010 Mac P

  • Quantity for service type invoice

    hello i am trying to create a service type purchase order. i have created row level udfs for unit price and quantity. price should be multiplied by unit price and the total should be displayed as the total for the invoice. how can i do this? secondly