Drag & Drop Images Between Tabs?

Hi, Forgive me if I am missing the obvious but I need some help.
Just got myself an iMac and I am in the process of getting it set up how I like it, Made the move from a Windows PC where I used the FireFox browser.
My plan had been to just use Safari on my Mac to take advantage of all the good things like handoff, keychain etc with my other iOS devices.
Now here is my problem, I use eBay a lot and I upload extra photos to hosting sites, then drag and drop them from that tab into the description on the eBay tab.
However Safari does not seem to allow this, When trying to drag the images between tabs I just get a green + symbol which replaces the tab whereas when I use FireFox to do the same the other tab essentially "opens" allowing me to drop the image in.
Is there anything I can do to fix this or a work around? I have tried the "Copy image" option but when I paste it in I just get a broken image picture.
I should say the OS X version of FireFox works fine so it must be something to do with how Safari handles it.
Hopefully somebody can advise?
Many Thanks
Craig

I have found a slight work around in that if you use a new window instead of of a tab, then shrink it down you can drag and drop images.
But surely there has to be a way to do it between tabs?
Basically I am looking for a way to have the tab open when it is hovered on instead of the green + button appearing...

Similar Messages

  • Drag drop images while composing the forum post

    Hi All,
    Many time I felt like it would be good if we can drag drop images to the forum post being composed.  Similar to Gmail compose, if NI forum composition page also has that drag drop feature, it would be great.  But I'm wondering if it's only me or other people are also out there looking for this feature.
    Thanks,
    Ajay.

    Francois,
    I have tried to implement this bean but I'm having problems. I've been using your
    LAF package for almost 4 years now without issue. I tried the jar file from the zip
    file. I also created a new project and recompiled the java code against the 10.1.2.3
    frmall.jar file that matches our app server. I resigned it and it's still not working.
    Maybe I'm just missing something simple. When I compile and run the form, I see
    the canvas and I can change the text fields, but I don't see how I can drag and
    drop items. Hopefully, you can think of something that can fix our problem. I would
    love to be able to use drag and drop functionality in an upcoming application.
    We're running the following versions:
    App Server: 10.1.2.3
    DB: 10.2.0.5
    JDev: 10.1.3.3.0
    Windows XP for the clients
    Windows Server 2008 for the servers
    Thanks,
    Jason
    Edit: I looked in my java console and saw that my issue was that we signed this jar file with a different certificate. I created a special config as Francois has suggested in another post and included only the DnD.jar file and it worked. However, I can't get the image or multi-line text areas to drag and drop. I'll keep poking around and see if I can figure out what's going on. The console seems to recognize when I'm dragging and dropping from all fields.
    Edited by: hanszarkov on Jun 27, 2011 12:58 PM

  • Drag & drop images from Finder into new Photoshop layer?

    Is it possible to drag & drop images from Finder into a new Photoshop layer?
    I can do it from a web browser, but not the Finder.

    >I couldn't find a way to do so in Bridge, but also I never use that program. Never got into Bridge's workflow. >
    I really do suggest that you re-visit Bridge especially the CS4 version.
    I just cannot conceive of trying to use a Digital camera, a Scanner or the Creative Suite programs without using Bridge and ACR.
    I can even use it to read PDFs and inDesign documents (all pages!) without opening Acrobat or InD..
    >I usually keep a "work" window open with all the files I am using for a project, so it would be far more handy to be able to skim them in the Finder.
    It is now far more effective and efficient to do that in Bridge than in the Finder.
    This is where you would find the new Collections feature to be invaluable:
    Just select all the images and other files connected to a project from any folder and drag their icons into the same Collection.
    You then have all aliases (previewable at full-screen slide-view size with one click of the space bar in CS4) to ALL of your files which are now visible in. and openable from, a single panel.

  • Drag and Drop images between two listviews

    I need a help for listview drag n drop opretion on winform. where  listview1 hold the images and i want to drag images from listview1 to listview2
    and then when i click any button i want all paths of Images which is in the listview2. and also i want to set the image size on listview2. Please help me.

    Hi Ajay Kumar,
    According to your description, you'd like to drag and drop listviewitems between two listviews.
    Here is my example for dropping items between listviews. You could add one imageList control to your form.
    public Form1()
    InitializeComponent();
    this.listView2.AllowDrop = true;
    this.listView1.AllowDrop = true;
    this.listView2.View = System.Windows.Forms.View.LargeIcon;
    this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDragDrop);
    this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
    this.listView1.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.OnItemDrag);
    private void Form1_Load(object sender, EventArgs e)
    DirectoryInfo dir = new DirectoryInfo(@"D:\Material\Emoticons");
    foreach (FileInfo file in dir.GetFiles())
    try
    this.imageList1.Images.Add(Image.FromFile(file.FullName));
    catch
    Console.WriteLine("This is not an image file");
    this.listView1.View = View.LargeIcon;
    this.imageList1.ImageSize = new Size(32, 32);
    this.listView1.LargeImageList = this.imageList1;
    this.listView2.LargeImageList = this.imageList1;
    //or
    //this.listView1.View = View.SmallIcon;
    //this.listView1.SmallImageList = this.imageList1;
    for (int j = 0; j < this.imageList1.Images.Count; j++)
    ListViewItem item = new ListViewItem();
    item.ImageIndex = j;
    this.listView1.Items.Add(item);
    private void OnItemDrag(object sender, System.Windows.Forms.ItemDragEventArgs e)
    DoDragDrop(e.Item, DragDropEffects.Move);
    private void OnDragEnter(object sender,
    System.Windows.Forms.DragEventArgs e)
    if (!e.Data.GetDataPresent(typeof(ListViewItem)))
    e.Effect = DragDropEffects.None;
    return;
    var items = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
    if (items == null)
    e.Effect = DragDropEffects.None;
    else
    e.Effect = DragDropEffects.Move;
    private void OnDragDrop(object sender, System.Windows.Forms.DragEventArgs e)
    ListViewItem items = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
    if (items != null)
    this.listView2.Items.Add((ListViewItem)items.Clone());
    Results:
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    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.

  • Can't drag & drop images from Windows Explorer into Elements 7

    Hi...
    I'm a Photoshop Elements 7 newbie... I can't drag and drop images (jpeg, tiff, Olympus RAW) from  Windows Explorer (file explorer and not IE) to Photoshop Elements like I  can in Corel Paint Shop Pro X2? It also works in Corel Painter IX.5 & ArtRage 3 (except for RAW)... My operating system is Windows 7 Home Premium 64 bit.... I've uninstalled and re-installed Elements but to no avail. I've also tried to run Elements under various compatability modes but still no luck....
    Any ideas?
    It's driving me nuts...
    Thanks kindly
    Ken

    "I just remembered: If the Editor or Organizer are "running as administrator", then you can't drag and drop from Windows Explorer.  To see if you're running the program as administrator right click the desktop icon or Start Menu item you use to launch PS and select Properties.  On the Compatibility tab, is Run This Program As Administrator checked?  (Note that in Vista and Windows 7, running a program as administrator is different than running it in an account that's a member of the Administrator's group.)"
    I wasn't running the program as administrator so I enabled that compatibility property applied it then disabled it. It seems to work now. I thought I'd add this to flesh out the previous answer. I didn't open the program in between the enable and disable, so it is a quick process. Also, I am using windows 8.1 and had to open the file location in order to do this. Right click on the tile then choose 'open file location'

  • Drag Drop images/icons JApplet

    Hi! I would like to implement a Drag Drop of images/icons between two JPanels in a JApplet. Can someone give me a working example of the code that I have to implement ???
    Thanks to you !!!!
    TGuido

    The standard procedure is to post a small message to make your old post go to the top

  • Drag&Drop Over a Tab

    Since introducing the tabs there is no way to drag&drop a layer from file to file unless you detach (move to new window) the source image. I guess this was overlooked.
    Can we have the ability to drag and drop layers and selection by dragging them onto the tabs?
    And another thing. I deactivated 'Open documents as tabs' in preferences, but it only works when I open documents through PS open dialogue. If I drag&drop a file from the explorer it opens as a tab. Can this be resolved as well?
    Thanks,
    Alex

    Dragging and dropping to tabs is something that is implemented, but remember hearing that it was done last minute.I dont use the tabbed interface either. Because it doesnt seem to provide anything that the shortcuts don't provide, and just throws in a whole lot of unecessary interface clutter.
    As for the slowness of the operation of this feature, I have a theory that Adobe have a room full of 70+ gentlemen, all testing new features. "if we'd had something like this in the 1930's, then we woudn't have complained" types.

  • I can't drag an images between not floating frames

    Hello i have the newe Elements 12.
    It was working perfectly, but after the last up-date there was a problem.
    Ican't drag images between not floating frames anymore. this was possible before the up-date.
    now the images can only be draged if one is a not floating frame and the other one is a floating frame.
    does some one know how i can change this?

    No fix. It's a bug introduced with the update. Using floating windows is the only work-around.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Drag & drop; image degradation; preview for web screen

    Hi. I'm a photographer and was wondering how to enforce a no
    drag and drop option for each of my images on my page. I'm also
    having problems with dragging an image from the desktop to my
    template and the image not transfering over well, i.e. it looks
    flat with a lack of contrast. And last question, when I apply the
    preview for web page from DW, my sample does not include the
    photograph, just a small box with a ?. Any solutions? Thank
    you!!

    Hi. I'm a photographer and was wondering how to enforce a no
    drag and drop option for each of my images on my page. I'm also
    having problems with dragging an image from the desktop to my
    template and the image not transfering over well, i.e. it looks
    flat with a lack of contrast. And last question, when I apply the
    preview for web page from DW, my sample does not include the
    photograph, just a small box with a ?. Any solutions? Thank
    you!!

  • Updated iPhoto last night...Now, can't copy/paste or drag/drop images to folders/thumb drives outside of iPhoto

    As the title states, I updated iPhoto last night as per suggestion from the App store.
    It installed, and I went back to work using it. Within a few minutes, iPhoto crashed. I sent the report to Apple.
    When i opened iPhoto back up, it said it found inconsistencies and needed to repair. so i let it repair, which took a while...when it was done, i went back to work editing some photos from a recent shoot. It almost crashed again while i was working and then it came out of it. Anyways, i shut down everything after a bit of work and all was good in the world...until this morning.
    I went to get the images out of iPhoto and onto a thumb drive, but it wouldn't let me. I selected 50 images, copied them, and went to paste in the folder on the thumb drive...but it only pasted 10 of the 50 images. so i tried dragging them all and dropping them into the folder. nothing happened. it has done this to me once before, and when it did, i restarted and tried again and it worked...this time, i restarted and tried again and it kept doing the same thing. so i shut it down, did a cold boot, got everything back up, and tried again...still doing the same thing.
    It seems like every time i do an upgrade to iPhoto it causes some kind of problem. it never crashed on me until i did the first update, and since then the stability has been a real issue.
    So anyways, i didn't have a lot of time this morning before i had to go to work to try to figure this out, BUT, i did notice that it would allow me to drag and drop 1 image at a time...and that would save to the folder i selected...but i don't have time to do 1 image at a time...EVER! i am a photographer and need to drag and drop hundreds of images at a time.
    Can anyone help?
    thanks!
    Joe

    Thanks for the response, Larry!
    I will try that when I get home and see if it works. Will update the thread with the results then.
    I hope it works as you described, but it is/was so much easier to just be able to select the photos in iPhoto and drag/drop them directly into the folder on the thumb drive...it's odd it doesn't work anymore...?

  • Drag/Drop playlists between shared PCs via local network.

    Prior to Itunes ver 11.0.0.163, I was able to copy thru the drag/drop process a Itunes Home Shared playlist of music files on one computer - to another Home Sharing enabled  Itunes playlist, on another computer via local network. How is this done now?

    It appears with the release of Itunes ver 11.0.1.02 that this bug has been corrected.  Please close out this thread.  Thanks.

  • How to drag and drop image between Windows platform and VM

    Thanks.

    Hi Deer2000,
    There are several things you need to do first. You need a Transferable that can provide the image data in a format that the application likes. You will not be able to drop a serialized ImageIcon onto a native app for example. Most won't accept a binary stream even if you declare it's MIME type (e.g. image/jpeg) either.
    You need to know what the native "clipboard" formats are. For example on Win32, DIB (device independent bitmap) and BITMAP are clipboard image formats. Learn the format and write an InputStream the can provide it. Then add your stream to a FlavorMap.
    What is a FlavorMap and why do I need one?
    Most native apps don't understand MIME types for data transfer. They have their own "clipboard" types. Java DataFlavors are based on MIME types. In order to provide a mapping between the win32 format TEXT and MIME types text/plain;charset=ascii you create a FlavorMap. Actually the default system flavormap does this type for you.
    An easy way to add mappings is to edit $JDKHOME/jre/lib/flavormap.properties. For our custom image stream we've added the following entry:
    DIB=image/x-win-bmp;class=com.rockhoppertech.dnd.datatransfer.BitmapInputStream
    Other Win32 clipboard formats are:
    WAVE
    RIFF
    PALETTE
    ENHMETAFILE
    METAFILEPICT
    DIB
    TIFF
    Or please refer this URL, which gives a good idea about drag and drop in Java
    http://www.rockhoppertech.com/java-drag-and-drop-faq.html
    I hope this will help you.
    Thanks
    Bakrudeen

  • Qosmio x870 - Drag & drop with alt-tab not possible using touchpad

    Hello everyone,
    I have a problem with my Qosmio x870 and Synaptics touchpad drivers on Win7 64bit.
    They will not allow me to drag and drop between applications.
    As soon as I press Alt-Tab while dragging a file to switch to another application, dragging instantly stops.
    I'm using official & latest (15.3.41.7) Toshiba touchpad drivers from here http://goo.gl/pKHAI
    I tried installing generic Synaptics drivers and they don't have such a problem.
    With them, everything works fine with drag and drop,
    however, their implementation of two finger scrolling is really buggy and more than half the time it doesn't work so I can't use those.
    Does anyone know if this bug will be fixed and when?
    Any help? Thanks!

    Hi,
    I don't have "Advanced" tab in Mouse settings in control panel. Is there something i need to install in adition to Toshiba Synaptics drivers?
    I also tried changing every available setting in Synaptics drivers settings, but no change :(
    About Synaptics generic driver: Yes, I chose that one, but as I said, it's really buggy with two finger scroll, so I reverted back to Toshiba ones.

  • Need Drag & Drop Image creation app.

    HI, I'm not yet a Flash/Flex programmer but need an answer
    from an experienced one.
    I have a customer that wants to be able to make a drag N drop
    application that would produce a Vector based graphic (that I could
    save or email) as it's final product.
    Analogy: Imagine a picture frame shape workspace that you
    could drag items onto, like add an image of the sun and a tree and
    a bird, then arrange and possibly re-size them, then have some
    process take this created image and save it as some format that is
    a Vector based drawing, or I can probably convert it to vector from
    a GIF or JPG on the backend...
    Sound Possible?

    HI, I'm not yet a Flash/Flex programmer but need an answer
    from an experienced one.
    I have a customer that wants to be able to make a drag N drop
    application that would produce a Vector based graphic (that I could
    save or email) as it's final product.
    Analogy: Imagine a picture frame shape workspace that you
    could drag items onto, like add an image of the sun and a tree and
    a bird, then arrange and possibly re-size them, then have some
    process take this created image and save it as some format that is
    a Vector based drawing, or I can probably convert it to vector from
    a GIF or JPG on the backend...
    Sound Possible?

  • Drag & Drop image of currently playing song causes the Spotify window to "jump" to another position

    When I try to drag and drop the image of the currently playing song (the one that appears under the playlist list, on the left side of the screen), the entire Spotify window jumps (i.e. moves/repositions) inside the screen to a totally different position, making it impossible to drag the song to the intended playlist. It seems that the the window is moved to the current mouse cursor position (i.e. the left top position of the window becomes the mouse cursor position, with an offset). When I reposition the window again manually, and try to do the same thing, it doesn't happen. I have been able to reproduce this issue a 100% of the times: I just refocus a few other windows I have open and then try to add the currently playing song to a playlist in the afore mentioned way.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

Maybe you are looking for

  • Rollovers not working in CS3 - HELP!

    I imported a site into Dreamweaver, and on the pages I haven't touched the rollovers work fine.  On the pages I've made changes, the rollovers no longer work although the links work.  I tried replacing the head tag on the page with the disfunctional

  • Why do I have to wait two hours to see selected movie?, why do I have to wait two hours to see selected movie?

    I am new to Apple TV and not a sophisticated user of all this new technology. But we decided to plunge in an get the Apple TV box,  join NetFlix and all the rest.  So far it is a cruel joke on two old people.  I selected a movie last night and we had

  • DTW error while uploading the GL account

    Hi all I m trying to upload GL accounts from dtw with segment account and I created segment in sap but dtw uploaded the title account but active account is not uploading and its giving error ...enter valid code . please help Thanks \ ricky

  • Premiere Elements 3.0- Aspect ratio of inserted pictures is skewed

    I am inserting some pictures into my project that are the exact same size (720x480) as my final video export, however, they are getting squished down in the previews and in the final export, look more like 640x480. Is there a way I can control this o

  • Two instances of NetworkManager applet

    I'm running Arch with Xfce. Fully updated. After an update a couple of days ago, I'm finding I've got a second instance of the NetworkManager applet on the Xfce panel. I've looked through the systemd setup, but so far I've no idea what is triggering