Drag and drop onto AIR to start AIR with a file

Is it possible to drag a file onto an AIR application icon to START the application using that file?
I'm aware that once the AIR app is open files can be dragged into it and it will also open the application when a file is dragged onto it (if the file type  associations have been set) though without any of that file being used, but I'd like to be able to open it directly with the file I drag onto the app. Some sort of InitialStateVariable or such?

This doesn't seem to work on Snow Leopard. Is there any think I should check?
UPDATE:
Found out, lazy me!
NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, onInvoke);

Similar Messages

  • Drag and Drop onto a Panel

    Does anybody know how to enable drag and drop onto a panel? I
    need my users to be able to choose an image from a grid and place
    it where ever they want on a panel or something. How can I do this
    in flex? I know how to do drag and drop from grid to grids or
    select boxes. I just can't get to place it on a panel.
    Thanks for any insight

    Thanks a million. This definitely helps out a lot. Do you
    know of a way where you could put all of them on the panel and
    control their layout? Basically, I need the user to be able to pick
    as few or as many of the flags they want and place them on the
    panel to make a collage. So the end user can drag the items around
    and put them in the panel however they see fit.
    Once again, thanks.

  • Drag and drop onto/from a JTable but not onto itself on 1.5

    Hi, i can drag files from Windows Explorer onto a Jtable ,and they get opened and listed in the table, and I can drag records from the table and drop them into Windows Explorer to make a copy of a file. In order to drag files from the table I just need to drag a field in the table (fields can be selected in the table) but it is very easy to accidently start dragging when I dont want to drop and then dropping the file on to the table, I then get an error because Im trying to open a file that is already opened in the table.
    How can I do the following.
    1. If I have selected multiple fields (representing files) in the table I dont want the GUI to allow me to to drop those files onto itself.
    2. If I have selected a single field and I drag to another field, I want to treat it as a drag and drop of a single text field rather than as a file.
    of course as soon as I leave my application I want the drop to be seen as a list of files, and I want to still be able to drag files from other applications to the table. Soltion needs to be java 1.5 comptabile
    thanks Paul
    (So far Ive implemented a TransferHandler, Transferable and DropTarget classes)

    Well Ive done it - wasn't that hard. the key thing was to put both file and field data into the transferbale when created.Then the drop target has to look for field data as a valid data flavor before it looks for a list of files data flavor.

  • Drag and Drop Onto a JAR

    I got a great answer from Dr. Clap (for XP) to this question in June.
    However, it doesn't work in NT 4.0. I am looking for a workaround for this OS.
    I have an application that runs out of a JAR file (an editor). I would like to be able to drag and drop a (html) file onto a desktop shortcut for to the jar, and have: 1) javaw run, 2) pass it the jar file to open, and 3) pass the html file to the opened jar for editing.
    What follows below is how to do this in XP (and it works). In NT, if I put this into the shortcut it tells me - when I drag and drop a file onto it - that it can't find the appropriate classes.
    ================================================================
    Look at the association for the JAR extension, you'll find that it uses javaw.exe and the "open" action is mapped to some command line involving javaw.exe and %1 which represents the jar file to be executed. Now, for your extension make a very similar setup, only your "open" command line will look something like this:
    "C:\...\javaw.exe" -jar YourSpecialJar.jar "%1" %*
    That command line runs your jar file and passes the file being "opened" to the command line as the first parameter. (I don't know what the %* does but it's in the command line for the jar extension.)

    I would doubt that it would work differently under NT. I'd assume you just didn't do it right, or this jar's manifest file doesn't include the right jars that it depends upon.

  • Drag and drop onto a cd loses quality

    I shoot in RAW and the file sizes are large and I can manipulate the e-mails BUT
    I noitced that when I drag and dropped RAW photos on to a CD to burn the jPeg qulaity dropped.
    For instance a 14.5mb drops to 537kb..
    I would guess I need to change something and would like help with the issue.
    Thnak you,
    Greg

    Hi Greg -- I really wish I could retract my post.  It doesn't read at all the way I thought it did.  Please accept my apology.  What I was trying to say is that as a means of exporting, drag-and-drop is effectively crippled in Aperture.
    Aperture's complexity makes dragging-and-dropping Images to create and export files unworkable without additional input.  The designers made, imho, a good decision in making drag-and-drop of Images from Aperture to another program equal to exporting the Previews of the dragged Images.
    Again, my apologies -- and my thanks for your soft handling of my rudeness.
    Cheers,
    --Kirby.

  • How do i drag and drop onto a smart object layer in Photoshop CS 5.5

    I recently bought a 3d mock up Photoshop file as I want to mock up my designs such as business cards and other 3d items. The file notes said With a simple drag and drop on the smart object layer your design will be presented in a realistic and striking way.
    Can you tell me how I do what they are telling me to do as I have played around with the file till the cows come home and can't work out how to do it. Do I need to do the old fashioned mock up way by skewing the image to fit or is there an easier way such as the drag and drop...?
    Any help will be gratefully received,
    Thanks

    Hi here is the template PSD and then I want to put my business card design over and it says you can drag and drop as per my previous message ...

  • In mail drag and drop to desktop does not work with big pictures in 10.9

    My drag and drop function in apple mail program does not working anymore after upgrade to macos 10.9
    Big picture in my mail does not want to drag to the desktop anymore!
    Imac 2.93 Ghz core i7

    Hello,
    Please give your SPS (Java) and Patch level of BIBASES & BIWEBAPP.
    Regards, Karol
    SAP NetWeaver BI, Development

  • How to drag and drop an email from Outlook Express (with example code)

    Hi,
    It is possible to drag a mail from Outlook Express and drop it on the desktop, and the file created is a .eml, which is a text file.
    If I drop it into a Java application, no DataFlavor is provided to make the data transfer possible.
    As the data to transfer is a text, it should be possible to drop it.
    How to make a DataFlavor available and recover the text as a stream of characters?
    Example code
    The small application below shows the MIME type of the data that is about to be dropped. If you drag an icon from the desktop, a type will be displayed; if you drag an Outlook Express mail, no type will be displayed.
    Thanks.
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.util.List;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTree;
    public class TestSDN extends JFrame {
        void run () {
            JLabel lab = new JLabel();
            lab.setPreferredSize (new Dimension (100, 100));
            lab.setOpaque(true);
            lab.setBackground(Color.RED);   
            getContentPane().add (lab);
            new DropTarget(lab, new DropTargetListener(){
                public void dragEnter(DropTargetDragEvent dtde) {
                    System.out.println("dragEnter DataFlavors="+dtde.getCurrentDataFlavors().length);
                    for (DataFlavor df: dtde.getCurrentDataFlavors())
                        System.out.println("DataFlavor MIME type="+df.getMimeType());
                public void dragExit(DropTargetEvent arg0) {
                public void dragOver(DropTargetDragEvent arg0) {
                public void drop(DropTargetDropEvent arg0) {
                public void dropActionChanged(DropTargetDragEvent arg0) {
            pack();
            setVisible (true);
        public static void main(String[] args) {
            new TestSDN().run();
    }Edited by: JavaGame on Jan 29, 2009 9:56 AM
    Edited by: JavaGame on Jan 29, 2009 9:57 AM

    It might just be Microsoft not using standards? I remember having a similar situation - I had an application that could have a zip entry fron 7-zip drag-and-dropped into it (came over as plain text, or maybe an InputStream, can't remember), but when you drill into a zip file with Windows (Vista at least), and try to drag-and-drop a zip entry from Windows Explorer, Java shows no dataflavors available. I just assumed Microsoft wasn't exporting the zip entry in any standard format (such as plain text).
    Sorry, I know that wasn't very helpful, just thought I'd share a similar experience. :)

  • I can't drag and drop onto my desktop.

    I've tried repairing my permissions and and my disk and nothing is working. I made sure that it was unlocked in the info window and everything.
    Help!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, or by a peripheral device.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Icons wont drag and drop onto particular area

    Ok on my desktop there is a section of my desktop on the left side (basically the area underneath where my dock comes out) where i cant put any icons or documents of any description. The rest of my desktop is active and can be used but this one little vertical bar of space is dead. Is there any way to fix it?

    If you're talking about this area, it's the divider bar.  You can't put anything in this space.
    Programs on one side, folders on the other.
    Captfred

  • Drag and drop data from datagrid to textInput with flex.

    Hi,
      Cay please help me out on this problem..
      I have a datagid with some values..I have a textInput on the UI..
    There is one "+" button on the UI..when i click on that button it will add one more TextInput box to the UI below the first TextInput..Like thiseverytime  when you click on the "+" button it will add one more TextInput to the UI just below the previous one..
    Now i want to drag the values from datagrid to Textinput boxes..User may drag two or more vlaues to each textInput upon his requirement..
    How can i drag ...could you please help me out on thi issue....
    I am not able to drag the values to TextInputs:
    Here is my code:::Could anyone please help me...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   width="100%"  height="100%" creationComplete="init()">
    <mx:Script>
                <![CDATA[
                    import mx.containers.HBox;
                    import mx.controls.Alert;
                    import mx.managers.PopUpManager;
                //    import Components.testPopUpWindow;
                    import mx.core.UIComponent;
                    import mx.containers.TitleWindow;
                    import mx.core.DragSource;
                   // import mx.core.IUIComponent;
                    import mx.managers.DragManager;
                    import mx.events.DragEvent;
                    import mx.controls.Alert;
                    import mx.controls.Text;
                    import flash.geom.Point;
                 import mx.collections.ArrayCollection;
                 [Bindable]
                private var dpFlat:ArrayCollection = new ArrayCollection([
                                     {JobName:"A"},
                                    {JobName:"B"}, 
                                    {JobName:"C"},
                                    {JobName:"D"}, 
                                    {JobName:"E"},
                                    {JobName:"F"},
                                    {JobName:"G"}]);
                  private function box_addChild():void
                        var box:HBox = new HBox();
                           box.width=716;
                           var descriptionTextInput:TextInput = new TextInput();
                           var strButton:Button=new Button();
                          strButton.label="Submit";
                         descriptionTextInput.width=174;
                         descriptionTextInput.height=58;
                         box.addChild(descriptionTextInput);
                        /*     box.addChild(strButton); */
                        //    strButton.addEventListener(MouseEvent.CLICK,submitButtonClicked);
                         interactiveQuestionsVBoxID.addChild(box);
          public function init():void
            this.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
            this.addEventListener( DragEvent.DRAG_DROP, handleDrop );
          public function acceptDrop( dragEvent:DragEvent ):void
            if (dragEvent.dragSource.hasFormat("items"))
              DragManager.showFeedback( DragManager.COPY );
              DragManager.acceptDragDrop(TextInput(dragEvent.currentTarget));
          var pt:Point;
          public function handleDrop( dragEvent:DragEvent ):void
           // var dragInitiator:UIComponent = dragEvent.dragInitiator;
            //var dropTarget:UIComponent = dragEvent.currentTarget as UIComponent;
            var items:Array  = dragEvent.dragSource.dataForFormat("items") as Array;
            /* pt = new Point(dragEvent.localX, dragEvent.localY);
            pt = dragEvent.target.localToContent(pt);
            var img:TextInput = new TextInput();
              img.x=dragEvent.localX;   img.y=dragEvent.localY;
           // img.x=pt.x - Number(dragEvent.dragSource.dataForFormat("mouseX"));
              //img.y=pt.y - Number(dragEvent.dragSource.dataForFormat("mouseY"));
            img.width = 50;
            img.height=50;
            img.setStyle("fontSize",20);     // img.source="assets/" + items[0].id + ".png";
            img.text=items[0].JobName.toString();
             img.buttonMode = true;
             img.mouseChildren = false;
              TextInput(event.currentTarget).text=itemsArray[0].label;
             var itemsArray:Array = event.dragSource.dataForFormat("items") as Array; */
                    TextInput(dragEvent.currentTarget).text=items[0].label;
             public function beginDrag( mouseEvent:MouseEvent ):void
            var dragInitiator:TextInput = mouseEvent.currentTarget as TextInput;
            var dragSource:DragSource = new DragSource();
           // dsource.addData(this, 'node');
            dragSource.addData(this.mouseX, 'mouseX');
            dragSource.addData(this.mouseY, 'mouseY');
            //parent.addChild(dragImg);
            //dragSource.addData(mouseEvent.currentTarget.text, "txt");
            try{
                var dragProxy:TextInput=new TextInput();
                dragProxy.text = mouseEvent.currentTarget.text;
                   // Alert.show("Text isss"+dragProxy.text);
                   dragProxy.setActualSize(mouseEvent.currentTarget.width,mouseEvent.currentTarget .height)
                // ask the DragManger to begin the drag
                DragManager.doDrag( dragInitiator, dragSource, mouseEvent, dragProxy );
            catch(e){}   
                  ]]>
        </mx:Script>
    <mx:Canvas id="c1" width="100%" height="100%" y="10" x="10" >
    <mx:DataGrid id="d1" dataProvider="{dpFlat}"  x="10" y="119" dragEnabled="true"   dragMoveEnabled="true"  height="229" width="176"/>
    <!--<mx:Label id="lbl"   text="Job Name" width="195" height="28"  x="0" y="0" fontWeight="bold"/>-->
    <mx:Box id="questionLabelMode" direction="horizontal" width="270.5" height="24" y="76" x="211">
        <mx:Label name="Answer" width="173" text="Answer" fontWeight="bold"/>
        <mx:Button label="+" width="70" click="box_addChild();" fontWeight="normal"/>
        <!--<mx:Button label="-" width="71" fontWeight="bold" click="box_deleteChild();"/>-->
    </mx:Box>
    <mx:VBox id="interactiveQuestionsVBoxID" y="119"  height="100%" width="270.5" horizontalScrollPolicy="off" x="211">
                     <!--<mx:Box id="boxID" direction="horizontal" width="268" height="58">-->
                         <mx:TextInput id="t1" width="174" dragDrop="handleDrop(event)"    height="58"/>
                         <!--<mx:Button label="Submit" id="b1" />-->
                  <!--    </mx:Box>-->
    </mx:VBox>
            </mx:Canvas>
    </mx:Application>

    Hi Satya,
    I have done it for you ...please copy the below whole code and try to run the application. You can see the application working for you.
    You have done two mistakes --- you have added the event listeners on this object........but this refers to current object(i.e; your main application file but not TextInput).
    So you need to addEventListeners for your textinput "t1" but not to this...
    If you add the listeners on this then in your "acceptDrop" and "handleDrop" functions you will get the "dragEvent.currentTarget" as your main app but not TextInput(Since you have added listeners to "this "). If you addListeners on t1 then its correct.
    Also you need to add the eventListeners for the newly added textboxes as I done in "box_addChild" function in below code.
    Also in the handleDrop function the line of code where you are assigning the text is wrong ......it should be the below code...
    TextInput(dragEvent.currentTarget).text=items[0].JobName;
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   width="100%"  height="100%" creationComplete="init()">
    <mx:Script> 
      <![CDATA[
                    import mx.containers.HBox;
                    import mx.controls.Alert;
                    import mx.managers.PopUpManager;
                //    import Components.testPopUpWindow;
                    import mx.core.UIComponent;
                    import mx.containers.TitleWindow;
                    import mx.core.DragSource;
                   // import mx.core.IUIComponent;
                    import mx.managers.DragManager;
                    import mx.events.DragEvent;
                    import mx.controls.Alert;
                    import mx.controls.Text;
                    import flash.geom.Point;
               import mx.collections.ArrayCollection;
               [Bindable]
               private var dpFlat:ArrayCollection = new ArrayCollection([
                                     {JobName:"A"},
                                    {JobName:"B"}, 
                                    {JobName:"C"},
                                    {JobName:"D"}, 
                                    {JobName:"E"},
                                    {JobName:"F"},
                                    {JobName:"G"}]);
                private function box_addChild():void
                    var box:HBox = new HBox();
                    box.width=716;
                    var descriptionTextInput:TextInput = new TextInput();
                    var strButton:Button=new Button();
                    strButton.label="Submit";
                    descriptionTextInput.width=174;
                    descriptionTextInput.height=58;
                    descriptionTextInput.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
           descriptionTextInput.addEventListener( DragEvent.DRAG_DROP, handleDrop );
                     box.addChild(descriptionTextInput);
                    /*     box.addChild(strButton); */
                    //    strButton.addEventListener(MouseEvent.CLICK,submitButtonClicked);
                     interactiveQuestionsVBoxID.addChild(box);
    public function init():void
         t1.addEventListener( DragEvent.DRAG_ENTER, acceptDrop );
         t1.addEventListener( DragEvent.DRAG_DROP, handleDrop );
          public function acceptDrop( dragEvent:DragEvent ):void
            if (dragEvent.dragSource.hasFormat("items"))
              DragManager.showFeedback( DragManager.COPY );
              DragManager.acceptDragDrop(TextInput(dragEvent.currentTarget));
          private var pt:Point;
          public function handleDrop( dragEvent:DragEvent ):void
           // var dragInitiator:UIComponent = dragEvent.dragInitiator;
            //var dropTarget:UIComponent = dragEvent.currentTarget as UIComponent;
            var items:Array  = dragEvent.dragSource.dataForFormat("items") as Array;
            /* pt = new Point(dragEvent.localX, dragEvent.localY);
            pt = dragEvent.target.localToContent(pt);
            var img:TextInput = new TextInput();
              img.x=dragEvent.localX;   img.y=dragEvent.localY;
           // img.x=pt.x - Number(dragEvent.dragSource.dataForFormat("mouseX"));
              //img.y=pt.y - Number(dragEvent.dragSource.dataForFormat("mouseY"));
            img.width = 50;
            img.height=50;
            img.setStyle("fontSize",20);     // img.source="assets/" + items[0].id + ".png";
            img.text=items[0].JobName.toString();
             img.buttonMode = true;
             img.mouseChildren = false;
              TextInput(event.currentTarget).text=itemsArray[0].label;
             var itemsArray:Array = event.dragSource.dataForFormat("items") as Array; */
              var currTarget:* = dragEvent.currentTarget;
              //interactiveQuestionsVBoxID = currTarget.getChildByName("interactiveQuestionsVBoxID");
                TextInput(dragEvent.currentTarget).text=items[0].JobName;
          public function beginDrag( mouseEvent:MouseEvent ):void
            var dragInitiator:TextInput = mouseEvent.currentTarget as TextInput;
            var dragSource:DragSource = new DragSource();
           // dsource.addData(this, 'node');
            dragSource.addData(this.mouseX, 'mouseX');
            dragSource.addData(this.mouseY, 'mouseY');
            //parent.addChild(dragImg);
            //dragSource.addData(mouseEvent.currentTarget.text, "txt");
            try{
                var dragProxy:TextInput=new TextInput();
                dragProxy.text = mouseEvent.currentTarget.text;
                   // Alert.show("Text isss"+dragProxy.text);
                   dragProxy.setActualSize(mouseEvent.currentTarget.width,mouseEvent.currentTarget .height)
                // ask the DragManger to begin the drag
                DragManager.doDrag( dragInitiator, dragSource, mouseEvent, dragProxy );
            catch(e:Error){}   
         ]]>
    </mx:Script>
        <mx:Canvas id="c1" width="100%" height="100%" y="10" x="10" >
      <mx:DataGrid id="d1" dataProvider="{dpFlat}"  x="10" y="119" dragEnabled="true"   dragMoveEnabled="true"  height="229" width="176"/>
      <mx:Box id="questionLabelMode" direction="horizontal" width="270.5" height="24" y="76" x="211">
          <mx:Label name="Answer" width="173" text="Answer" fontWeight="bold"/>
          <mx:Button label="+" width="70" click="box_addChild();" fontWeight="normal"/>
      </mx:Box>
      <mx:VBox id="interactiveQuestionsVBoxID" y="119"  height="100%" width="270.5" horizontalScrollPolicy="off" x="211">
        <mx:TextInput id="t1" width="174" dragDrop="handleDrop(event)" height="58"/>                    
      </mx:VBox>
    </mx:Canvas>
    </mx:Application>
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • How do I put music I have uploaded from a CD onto my iphone 5 via itunes? I have tried to drag and drop it onto my iphone when my phone is plugged into itunes this does not seem to be working.... Getting annoyed!!!

    I cant seem to get cd's that I have uploaded onto my iphone 5 via itunes. I have tried to highlight the items and drag and drop them into my phone but this isnt working...; This is really starting to frusterate me!!!
    Please help me

    If you have not already reverted the look and feel to be like iTunes 10 then
    View > Show Sidebar
    View > Show Statusbar
    click on the black arrow in the search box and untick Search Entire Library
    Now you should be able to drag and drop onto your phone or use the sync pages
    http://support.apple.com/kb/PH12113
    If your still having issues with your phone then Try this trouble shooting link
    http://support.apple.com/kb/TS1591

  • I can't drag and drop a Goggle image onto a Word doc.

    Is there a Firefox preference that allows images to drag and drop onto a Word doc?

    For what it's worth, this worked for me using the beta version of Firefox 4 and Word for Mac 2011. If it doesn't work for you, try dragging the image from Firefox to your desktop, and then from your desktop into Word.

  • Why wont itunes alllow me to put music I have uploaded from a CD onto my iphone? Every time I drag and drop it does nothing.

    iTunes wont allow me to sync an official CD I recieved as a present no matter how many times I try to Sync or just drag and drop, very frustrating!!

    If you have not already reverted the look and feel to be like iTunes 10 then
    View > Show Sidebar
    View > Show Statusbar
    click on the black arrow in the search box and untick Search Entire Library
    Now you should be able to drag and drop onto your phone or use the sync pages
    http://support.apple.com/kb/PH12113
    If your still having issues with your phone then Try this trouble shooting link
    http://support.apple.com/kb/TS1591

  • IMovie is not letting me drag and drop transitions, music, text boxes. Worked fine all along and now nothing. What happened?

    iMovie has always let me "drag and drop" transitions, music, text boxes etc into my Project. This morning it is not allowing me to "drag and drop" anything. This is for a client and I am so frustrated. What happened to make it stop letting me "drag and drop"?

    I have only dragged Titles to the project. When I did, it worked best not to drag and release onto the video strip (like with the old version) but just above the strip. When you drag and hover above the strip you get a little pointer to the starting point on the strip. Hope this helps.

Maybe you are looking for

  • No Startup Disc - Blue Screen Error

    I recently upgraded my G4 with the leopard operating system. It was running fine for a while and then entered the blue screen problem. I ran into this same problem with my G5 and took the proper steps to try and fix it but have had no luck. I tried t

  • Report in background not create spool when no data found

    Hello  , I created simple rapport that should run in background. When I  execute background job (sm37) I noticed that the  spool exists only for when the some data is found. When data is not found for any reason I do not have spool , and I need one s

  • ORA-29534 itextpdf-5.2.1 11g

    Hi Evereryone. I need make some pdf's from pl-sq, I have java code to generate some reports, this code needs itext5.2.1 library, but the database trhows ORA-29534 error when I load itext5.2.1 jar file (with loadjava). Database: Oracle Database 11g R2

  • WordService in Pages on Snow Leopard

    My original thread is: http://discussions.apple.com/thread.jspa?threadID=2321300&tstart=0 As it's got more to do with Pages, I'm also asking here. Essentially, I tried to install WordService (http://www.devon-technologies.com/products/freeware/servic

  • GRC AC and IDM integration

    Hello community, Someone knows if web can configure the IDM role requests workflow (configured at the IDM side) to use Role Assigner and Role Content Approval configured at the GRC AC side? Regards, SAP Legend