Drag and drop does not work with multiple images

if i try to drag and drop more than one image, nothing happens, no activity at all. i think i had this problem on another computer and it had something to do with the fonts. i can not remember exactly thanks iphoto 6

Go to font book and use it to make sure the helvetica font is enabled - disable and re-enable it if necessary.
Regards
TD

Similar Messages

  • Drag and drop does not work in firefox 3

    Does anybody has the same issue with firefox when you add a layout to the oracle composer and you want to drag and drop some components that it just does not work...
    When i hoover over the title bar of a component i see the cross icon but the drag & drop does not work. WHen i do the same in IE8 or google chrome, it does work.
    I have this issue for both oracle composer stuff as for sites i build in webcenter spaces.
    We are working with the latest version of webcenter

    WebCenter is compatible with:
    * Firefox 2 & 3
    * Internet Exploirer 7 and 8
    * Safari 3.0
    It might be caused by a firefox extension in your browser.

  • Please Help! Drag and drop does not work in Adobe AIR 3.1 (FlashBuilder 4.6)

    I am working on a PC is made of air and flashbuilder 4.6.
    Drag and drop application does not work in Flash Builder 4.6.
    However, the same source will work with Flash Builder 4.5.
    Please help me.
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                  xmlns:s="library://ns.adobe.com/flex/spark"
                                  xmlns:mx="library://ns.adobe.com/flex/mx"
                                  backgroundColor="#323232" width="100%" height="100%"
                                  initialize="init(event)"
                                  nativeDragEnter="onDragEnter(event)"
                                  nativeDragDrop="onDragDrop(event)">
              <fx:Script>
              <![CDATA[
                        import mx.events.FlexEvent;
                        protected function init(event:FlexEvent):void
                                  addEventListener(NativeDragEvent.NATIVE_DRAG_ENTER, onDragEnter);
                                  addEventListener(NativeDragEvent.NATIVE_DRAG_DROP, onDragDrop);
                        private function onDragEnter(event:NativeDragEvent):void
                                  if (event.clipboard.hasFormat(ClipboardFormats.FILE_LIST_FORMAT))
                                            NativeDragManager.acceptDragDrop(this);
                        private function onDragDrop(event:NativeDragEvent):void
                                  var arr:Array;
                                  arr = Array(event.clipboard.getData(ClipboardFormats.FILE_LIST_FORMAT));
                                  startImage.source = (arr[0] as File).url;
                ]]>
              </fx:Script>
              <s:layout>
                        <s:VerticalLayout/>
              </s:layout>
              <s:BorderContainer id="bc" borderStyle="solid" width="200" height="80%"/>
              <s:Image id="startImage" width="100%" height="100%"
                                             horizontalAlign="center" verticalAlign="middle"/>
      </s:WindowedApplication>

    Thank you answers, but it was not the answer I wanted.
    [Problem]
    * Flash Builder 4.5.1(updater) or Flash Builder 4.6
    - If you have installed on pc, does not work adobe air drag and drop
    [Solution]
    1. Reinstalling the Windows 7 (32bit).
    2. Install Flash Builder 4.5.
    3. Flash Builder 4.5.1 updater and Flash Builder 4.6 does not install.
       (Instead of using Flex SDK 4.6 is set up)
    In addition, Windows7 64bit environment does not work drag and drop.
    Is there another solution?

  • Drag and drop does not work in Exported release build

    I am using the built in DragManager class to handle some drag and drop functionality in an application.  When running from flex builder, It runs exactly as expected, but when I export the project to a release build, Dragging only works in the vertical direction.  How is this possible?  What might be causing such strange behavior.
    Any help would be much appreciated.

    Sorry, I will try to be more clear.  I am using drag and drop simply to move items around on a Canvas.  This works perfectly when running from flex builder, but when i export a release build it starts behaving strangely.
    I can drag items up or down on the canvas no problem, but as soon as I try to drag items left or right, there is no response.  On a windows machine, it gives me the black circle with a slash through it icon, implying that the drag is not accepted.  On Mac, there is no icon, it simply will not drag. 
    Hope that clarifies it, I could really use some help figuring this issue out.
    Update:
    I can confirm that the call to DragManager.acceptDragDrop is being reached in both cases, but the DragEvent.DRAG_DROP event is not being handled in the release build, (it is reached when run from flex builder)

  • In finder cannot easily change files from one folder to another. Drag and drop does not work. There should a cut and paste feachure.

    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.

    paulfromqueretaro wrote:
    In finder I cannto easily change files from one folder to another.  There should de a cut and paste for this.  Not drag and drop. thanks P.
    OS X is all about keyboard shortcuts.
    To cut       cmd+x
    To copy     cmd+c
    To paste    cmd+v
    With the Mouse, hold command and drag to your destination.

  • Drag and Drop does not work In Linux

    I have a asimple application that displays the file name and path when a file is dragged and dropped from Windows Explorer to a Java Frame. However, the same operation bombs in Linux. Please advise.

    Hello SixSigma
    I found the way for GNOME but not KDE.
    Here's a little code:
      public boolean importData(JComponent c, Transferable t) {
        if (canImport(c, t.getTransferDataFlavors())) {
          try {
            DataFlavor[] flavors = t.getTransferDataFlavors();
            for (int i = 0; i < flavors.length; i++) {
              // Drop from Windows
              if (DataFlavor.javaFileListFlavor.equals(flavors)) {
    if (t.getTransferData(DataFlavor.javaFileListFlavor) instanceof
    java.util.List) {
    java.util.List fileList = (java.util.List) t.getTransferData(
    DataFlavor.javaFileListFlavor);
    if (fileList.get(0) instanceof File) {
    File f = (File) fileList.get(0);
    // Do whatever with the file
    abrirArchivo(f);
    return true;
    return false;
    return false;
    // Drop from GNOME
    else if (DataFlavor.stringFlavor.equals(flavors[i])) {
    if (t.getTransferData(DataFlavor.stringFlavor) instanceof String) {
    String path = (String) t.getTransferData(DataFlavor.stringFlavor);
    path=dropDesdeGnome(path);
    if (path!=null) {
    File f = new File(path);
    // Do whatever with the file
    abrirArchivo(f);
    return true;
    return false;
    return false;
    catch (UnsupportedFlavorException e) {
    e.printStackTrace();
    return false;
    catch (IOException e) {
    e.printStackTrace();
    return false;
    return false;
      public boolean canImport(JComponent c, DataFlavor[] flavors) {
        for (int i = 0; i < flavors.length; i++) {
          if (DataFlavor.javaFileListFlavor.equals(flavors)) {
    return true;
    else if (DataFlavor.stringFlavor.equals(flavors[i])) {
    return true;
    return false;
      // Take selection's first file and put off the starting "file://" and the "\n"
      private String dropDesdeGnome(String path) {
        if (path.startsWith("file://")) {
          return path.substring(7, path.indexOf("\n")-1);
        return null;
      }Have tested with GNOME 2.2 and 2.6.
    If anyone achieve drop from KDE, please, post it (I love KDE).
    KoKo
    Eneko Nieto
    Universidad Publica de Navarra
    Area de Telematica
    [email protected]

  • Drag and Drop does not work

    my iPhoto was working fine until the last update. Now, it won't let me drag and drop photos from my photos or events to albums, projects or galleries
    is there a setting that has changed...

    Problem solved from another post... sorry for the duplicate thread.
    As posted....
    Go to Font Book in your Applications Folder. Use it to rnable the Helvetica Fonts - if necessary, turn them off and back on again. Restart iPhoto.

  • In administrator mode drag n drop does not work

    when i run my photoshop cs5 in administrator mode using "run as Administrator ... ", drag and drop does not work.

    This is related to my current project in visual basic 2010 express edition and Windows 7 (32bit).
    1. My application always run in administrator mode.
    2. In this application i used createobject("Photoshop.Application") method to reference and run scripts directly from program.
    3. When i run Photoshop in normal mode, error is thrown as can't create ActiveX connection.
    4.Why ?

  • How do I copy messages in a Mail folder to a flash drive?  Drag and drop is not working.

    How do I copy messages in a Mail folder to a flash drive?  Drag and drop is not working!

    Try doing a save as to the desktop and then try dragging thr .rtf file to the usb drive

  • Pages: I want to reorganize items in folders, drag and drop is not working. So how can I do this?

    Pages: I want to reorganize items in folders, drag and drop is not working. So how can I do this?

    This is the very top of the documents view in the Pages app. If you don't see this, swipe down in this window to reveal the Date and Name tabs like you see here. If you tap on - Name - that arranges all of the documents in alphabetical order in this view and it also arranges documents in the respective folders alphabetically. If you tap on - Date - that will arrange all documents by the date that they were created or last edited. You want to make sure that you keep Name as the default at the top.
    Trust me, this does work. If you name the chapters alphabetically .... Chapter 1, Chapter 2, Chapter 3, or if you simply name them A, B, C, D, etc. they will be arranged in that order using the Name button at the top, which uses alphabetical order to arrange the documents.

  • I had an iphone 4s and it worked nice with facetime and imessage using my phone number but  it was stolen on December so I buy a new iphone 4s using the same cellphone number  but now imessage and facetime does not work with my number, it only works with

    I had an iphone 4s and it worked nice with facetime and imessage using my phone number but  it was stolen on December so I buy a new iphone 4s using the same cellphone number  but now imessage and facetime does not work with my number, it only works with my apple ID.   Please Help me I speak Spanish so  if my English is not ok  I´m sorry about it.
    Do you think that apple has to   reset in their database of the old serial number attached with my phone number and that’s why I can´t activate imessage and facetime with my number in the new iphone 4s?? 

    I understand all of this Meg; that is why I bought an Iphone; but never expected my phone not even give a at least a 24 or even 12 hours....I work 12 hour shifts and also would expect to have to charge each night but not twice a day or more.  I am not always somewhere I can charge my phone.
    Your points are true; however it doesn't help me......

  • Why does the drag and drop feature not work?

    I have several files on my desktop.  When I try to move them o a new location, they just 'snap back' to their original position.  Why doesn't the drag and drop feature not function properly?

    I'm just trying to move some files to a new position on the desktop.

  • 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

  • Drag and drop photos not working

    With Aperture 3.5 you can no longer Drag a photo to another app, such as iMessage and drop the photo into that app.
    The target Apps do not see the Drag operation and therefore ignore it (don't show the + when ready to accept the dropped photo).
    Drage and Drop continues to work on earlier Aperture releases even if you update to Mavericks.

    And it works with iMessages.
    After enabling the previews in Aperture's preferences you need to generate them. The previews settings will only automatically create previews for new photos. To generate them for older images, use the command "Photos > Update Preview".
    How large are the images, that you try to drag? For very small images Aperture will not create previews at all, if the images have not been adjusted.

  • Safari for Mac, webpage with Java applet, drag and drop area not working.

    At my company, we have a web page that our users access to submit media files, (QuickTime, Audio, images...), for transcoding for delivery.  The web page consists of a java applet, with an area that our users drag and drop media file into.
    After updating to Safari 5.1.2, the applet will not work anymore. Instead, the browser will "open" the quicktime and play it, instead of allowing the Java Applet to do it's job.
    CAN I TURN THIS FUNCTIONALITY OFF??
    I read that Safari 5.1.2, (when it was initially released), broke something with the THEN current version of Java, and everyone was awaiting the latest update (build 1.6.0_29) to fix it. Unfortunately, this update did not fix my issue with the functionality of dragging and dropping media files into the web page.
    It seems to me, as if, there is an over-arching functionality setting (or something) that needs to be either turned off, or in some other way DE-prioritized.
    Anyone have any ideas?
    Safari 5.1.2
    MacOS 10.6.8
    MacBook Pro

    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

Maybe you are looking for

  • Error while starting CE7.2 instance from SAPMMC

    Get an error while "Synchronizing Binaries". Installed CE7.2 trial on Windows7 Laptop with 3GB RAM. Swap space is 6GB. MAXDB is running fine now.Volume and Log files are not full.. dev_start trace below: Has this pbm been sorted out before? trc file:

  • Fm to get employee under manager of all org unit

    hi, i have requirement that i need list of all employee under particular manager i know abt HRWPC_PNP_MANAGED_EMPLOYEES but i don't know how to use it is thr any fm reg it . thanks in advance

  • To find final internal table

    I HAVE PROBLEM IN KE24 SCREEN PROGRAM.THAT PROGRAM NAME Z RKEB0601. HERE IN THIS PROGRAM OUTPUT I HAVE TO ADD ONE FIELDNAME ORDERABLITY WHICH IDENTIFY D STANDARD ORDER OR SAMPLE ORDER. (WHEN SOME COMPANY GIVES US PO OR AFTER PRODUCTION I GIVE MY PROD

  • How can I import vcard info into numbers 3.0?

    How can I import vcard info into the new numbers 3.0? To the old numbers, it is easy ;-)

  • GUIBB List : IF_FPM_GUIBB_LIST_EXT

    Hi, There is an extension to the interface for GUIBB List, namely IF_FPM_GUIBB_LIST_EXT. It comprises of 3 methods : - NEEDS_CONFIRMATION - AFTER_FAILED_EVENT - BEFORE_DISPATCH_EVENT There is no documentation for the interface and it is not mentioned