How to add imge to another image box by drag and drop

Hi all
   i am using flex 3.and my problem is to drag an image and drop to another box or image what ever.just need to display the copy of the source image in its drop target.is it possible drag an image?if it is then how?please help me.
thanks and regards

there are examples of image dragging and dropping here:
http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/
i imagine for your problem, you want the final example, and instead of passing across an integer value, you want to pass across the image source.

Similar Messages

  • I have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    i have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    Greetings,
    What happens when you drag it?
    Make sure the drive you are moving the files to has enough available space to receive the file:
    Click on the movie file and go to File >  Get Info and note the "size"
    Check the drive to which you are moving the file to make sure it has enough available space: https://idisk.me.com/madisonfile-Public/web/finder-drive-available-space-and-for mat.html
    Also note the format of the drive you are copying too.  If it is not Mac OS Extended or FAT (not recommended unless you are taking it to a windows computer) then that may be the issue.
    Hope that helps.

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

  • How can I include a success message in a drag and drop interaction - I don't see this option in the Actions on success options, and cannot figure it out?

    How can I include a success message in a drag and drop interaction - I don't see this option in the Actions on success options, and cannot figure it out?

    I suspected you used the eye icon on the timeline to hide the message, but that one has no impact whatsoever on the published version. It is only meant to be used for editing reasons on the stage, to hide objects temporarily on a crowded stage. It is confusing, certainly in CP8 where for both instances the same eye icon is used. In previous versions the Properties panel had a checkbox for 'Show in Output', which was IMO much clearer than this eye icon. But of course, that is only my personal opinion.

  • Saving Images after doing drag and drop

    Hi Frenz,
    I'm doing on a program on drag and drop. Bascically, I have done 2 windows, one is the main window where the drag picture will be drop on and another one is the window with picture for me to drag.I want to know am I able to save_ the main windows with the "drag & drop" picture on it?
    Your help will be very importnat to us..Thanks
    cy.

    Re,
    If you want to capture the whole content of the window you should
    create a BufferedImage of the size of the window and the default color model.
    Then create the Graphics-object and call the paint method from the
    root pane of the window.
    // Create a BufferedImage
    BufferedImage buf = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
    // fetch the JRootPane
    JComponent rootPane = getRootPane();
    // create the graphics object
    Graphics2D g2d = buf.createGraphics();
    // do the paint
    rootPane.paint(g2d);
    g2d.dispose;to save this buffered image use the methods from javax.imageio.ImageIO.
    Olek

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

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

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

  • Drag and Drop and Image Size

    I need to be able to drag and drop images but I need them to be a certain size when I drag them out of an Aperture project. For various reasons, I don't want to use the export function. Only drag and drop will be efficient for the workflow that I"m planning. Problem is, the pixel dimension is not wide enough when I test it by pulling an image on to the desktop.
    My ultimate goal is drag them, sized and ready to go, and drop them onto a web browser upload page. I don't want to fumble with the extra steps of exporting them to another folder on the desktop and then upload the images from that folder to the browser.
    So does anybody know how or if it's possible to control the drag and drop SIZE /DIMENSION of an image?

    The drag and drop size is determined by your preview settings. What actually gets "dragged & dropped" is the preview, not the master file. You can control the quality and size of the preview in the Aperture preferences.

  • I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    If you could drag and drop pages before, it wasn't in Reader. You no doubt had Adobe Acrobat (Pro or Standard) which shouldn't be confused with Adobe Acrobat Reader. They recently added Acrobat to the name of Adobe Reader so the confusion about which product you had and/or have is understandable.

  • How to add a border to image

    I am a newby to Photoshop.  All I want to do is add a
    border to my image.  Can't find a tutorial. Help?

    Thank you. It looks very helpful.
    Date: Mon, 27 Jun 2011 15:03:52 -0600
    From: [email protected]
    To: [email protected]
    Subject: How to add a border to image
    Here's a little video from Adobe TV that shows you how to create borders in Photoshop Elements. If you don't have Photoshop Elements, skip the first 1:25 of the video, the rest of the steps apply to Photoshop as well:
    http://tv.adobe.com/watch/learn-photoshop-elements-9/creating-a-photo-borde/
    >

  • How to add byte[] array based Image to the SQL Server without using parameter

    how to add byte[] array based Image to the SQL Server without using parameter.I have a column in table with the type image in sql and i want to add image array to the sql image column like below:
    I want to add image (RESIM) to the procedur like shown above but sql accepts byte[] RESIMI like System.Drowing. I whant that  sql accepts byte [] array like sql  image type
    not using cmd.ParametersAdd() method
    here is Isle() method content

    SQL Server binary constants use a hexadecimal format:
    https://msdn.microsoft.com/en-us/library/ms179899.aspx
    You'll have to build that string from a byte array yourself:
    byte[] bytes = ...
    StringBuilder builder = new StringBuilder("0x", 2 + bytes.Length * 2);
    foreach (var b in bytes)
    builder.Append(b.ToString("X2"));
    string binhex = builder.ToString();
    That said, what you're trying to do - not using parameters - is the wrong thing to do. Not only it is insecure due to the risk of SQL injection but in the case of binary data is also inefficient since these hex strings are larger than the original byte[]
    data.

  • How to add tool tips on Image Icon obj?

    how to add tool tips on Image Icon obj?

    Take a look at the link shown below where drawing is done on a JButton -- you can draw your image on a JLabel too.
    http://developer.java.sun.com/developer/TechTips/1999/tt0826.html
    By drawing on a JLabel or JButton, you can add tooltiptext when needed.
    ;o)
    V.V.

  • How can I edit a RAW image in Adobe Bridge and/or Photoshop?

    Whenever I drag and drop a photo or group of images from iPhoto. it automatically converts them to jpegs. Even when taken as RAW images. With iPhoto 09, you could do a search of the IMG_#### listed in iPhoto, and a normally-hidden folder full of the original downloaded RAW images turned up in the search. Now, in iPhoto 11, the RAW images newly downloaded DO NOT show up in any system searches (using 10.8.4. It was bad enough when they were hidden... now they are virtually gone.
    I want to use iPhoto for organization and some editing, but some photos I want to work with in the RAW format and save as TIFFs. How do I do that?

    Whenever I drag and drop a photo or group of images from iPhoto. it automatically converts them to jpegs.
    Drag and Drop and Media Browsers access the iPhoto Previews only. No conversion, just the previews.
    With 10.8 Spotlight no longer searches within packages, that's to protect the inexperienced user from trashing his or her library inadvertently - as directly accessing the file can do.
    To use Raws with an external editor:
    First off set your preferred app as an external editor in iPhoto:
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Next: In the iPhoto Preferences -> Advanced, elect to use Raw with your External editor:
    Now when you go to edit the Raw it will be sent to your external editor.
    But there's a kludge here.
    iPhoto sends a copy of the file to Photoshop. In the case of a Jpeg you simply save and it all comes back to iPhoto seamlessly. However, if you use a Save As then Photoshop is creating a new file and iPhoto knows nothing about this.
    Now here's the catch with Raws. You cannot save a Raw. The work you do must be output to a new file, in a new format (jepg, tiff, whatever). However, as the External Editor is making this new file iPhoto has no knowledge of its existence. Therefore you must save it to the desktop and then import it back to iPhoto as a new file.
    This means that you will have your Original Raw and the processed version in iPhoto but they will not be recognised as version and original. iPhoto will see them as two separate shots.

  • Is it possible to add a drag and drop interaction to a called image in a contaner?

    this forum is my last hope =( i know how to do drag and drop
    by itself, however right now i have my flash set up so that when
    you click BUTTON A, it does:
    on (release) {
    _root.gotoAndPlay ("photo1");
    once it goes to "photo1", on that frame, i wrote actions on
    the frame to:
    var myMCL:MovieClipLoader = new MovieClipLoader ();
    myMCL.loadClip ("images/heritageBrochureFront.png",
    "container_mc");
    stop();
    so it loads my picture into the container. my question, once
    the image it in the container, can i add drag and drop interaction
    to it? i would really love an easy solution.

    yes. there are a couple of ways to do this.
    one is the create a child movieclip of container_mc and load
    into that child and assign your onPress/startDrag
    onRelease/stopDrag methods to container_mc.
    a second way is to load into container_mc (like you're
    currently doing), wait until loading is complete (ie, use the
    onLoad method of an mcl listener) and then assign your methods to
    container_mc.

  • How can I drag and drop an icon/image into a panel??

    Dear Friends:
    How can I drag and drop an icon/image from one panel into another target panel at any position in target panel at my will??
    any good example code available??
    I search for quite a while, cannot find a very good one.
    please help
    Thanks
    Sunny

    [url http://java.sun.com/developer/JDCTechTips/2003/tt0318.html#1]DRAGGING TEXT AND IMAGES WITH SWING

  • How to drag and drop another swf or fla into a template?

    I am building a flash website for a friend. We are using templates he purchased at flashden.net.
    I normally use wordpress, joomla and other such systems and am familiar with html, php, cgi and such.
    This is my first time dealing with a flash template.
    I have downloaded the trial version of the software and he wants to purchase adobe flash professional for me
    So that we can edit the template and add features he wants in the future.
    The website that sells the templates says you can easily drag and drop addons to templates in flash
    but I am not finding it so easy. Is there somewhere online where I can find a tutuorial on how to step by step
    drag and drop flash files into another template etc.?
    Also, where can I find good tutorials in general? I have downloaded adobe flash for dummies it is not as indepth as I need
    to get a handle on this software.
    Thank you to anyone that offers me any advice,
    David Doherty

    Ned,
    Thank you for responding.
    Flashden.net does claim its a simple drag and drop operation to do this but they have little to know information on the site about the subject and
    having difficulty with the sellers on step by step instructions. They claim it's easy it may be.
    The person I am building the website for had a bad experience with one of the sellers who refused to offer anything but basic instructions and claimed the cost of the software was not worth his time.
    Here are the instructions that were provided:
      Open news_rotator.fla
      Go to library.
      Select and copy NewsRotator movie clip.
      Paste it into your own project’s library.
      Now, you can drag and drop it into your own movie clips.
      Use news.xml to add/remove headlines.
    As you can see from what your telling me this is insufficent information on how to drag and drop this flash into another flash template.
    I will attempt to contact other selers at flashden for information as I have other flash templates we have purchased.
    Thank you,
    David Doherty

Maybe you are looking for

  • Is there a way to open an image in camera raw from within photoshop cs6 (on a PC)?

    is there a way to open an image in camera raw within photoshop cs6 (on a PC)? or do I have to use bridge to do this? Thanks....

  • Date problem with IST(+5:30) timezone

    Hi, I'm having problem with Timezone IST, which is GMT + 05:30. SimpleDateFormat returns incorrect date when timezone on client machine is other than IST. When Timezone on machine is IST, correct value is returned. See the below example. All four dat

  • How many songs can a 2GB nano hold?

    My daughter has an ipod mini that holds 1000 songs on it. Her mini and my sons ipod nano are on the same account so they share the same songs. My daughter has 265 songs total and was trying to update my sons nano. When she tryed it said that he didnt

  • Applets in IE 6

    I have created GUI using applet.But its not working with IE 6 Is there any problem in working applets in IE.Its works fine with the Mozilla anticipating positive reply Dheeraj Vijay

  • An independent preloader?

    I have a large collection of showreel video files that are all encoded in .swf format. I'd like to add a pre-loader (percentage bars, or even just a 'please wait' message); but re-encoding them all isn't really an option because the source files no l