Drag and Drop Listbox - Help

Hello! I am back to doing some LabVIEW programming and ran into a problem that I cannot seem to solve.
I am trying to use dag and drop on a listbox. I have it set to move only and it works fine. The problem is that if I have a drop event the item moved just goes away. I could not find any examples or answers in the forums.
Anyone care to teach me about drag and drop?
Thanks
=====================
LabVIEW 2012
Solved!
Go to Solution.
Attachments:
Drag Drop Listbox.vi ‏8 KB

Hey rossu,
I believe that I have found something that may help.  The link below explains how to select multiple items at once.
http://zone.ni.com/reference/en-XX/help/371361J-01​/lvhowto/setting_the_number_of_sele/
Also, it may help to repost this issue in a new forum since this one has been inactive for a while.  
Hope this helped.
Taylor

Similar Messages

  • AS2 Drag and Drop Interaction help

    I am trying to create a reusable template for a drag and drop interaction.
    There are 7 drag objects, 7 targets.
    Based on a scenario we develop (which of the 7 services [drag objects] are the best solution, for example), I would like to create interactions where some of the drag drop combinations are correct answers and dragging/dropping other combinations would result in an "incorrect" answer.
    I am having issues with designating the correct and incorrect responses in the AS code, as well as how to provide the positive (correct answers) and negative (incorrect answers) feedback after a submit button is selected.
    Additionaly, I have a reset button that does not function the way I expected - move the drag objects back to the start position and allow the user to resubmit an answer.
    I am using Flash CS5, but need to use AS2 as the swf file is going to be inserted into an Articulate Presenter project (Articulate does not support AS3 yet).
    Thank you for any assistance or suggestions!
    Source file: https://www.dropbox.com/home/AS2%20D&D#:::68035214
    Current AS2 code:
    function dragSetup(clip, targ) {
    clip.onPress = function() {
    startDrag(this);
    this.beingDragged=true;
    clip.onRelease = clip.onReleaseOutside=function () {
    stopDrag();
    this.beingDragged=false;
    if (eval(this._droptarget) == targ) {
    this.onTarget = true;
    _root.targ.gotoAndStop(2);
    } else {
    this.onTarget = false;
    _root.targ.gotoAndStop(1);
    //the variables below will store the clips starting position
    clip.myHomeX = clip._x;
    clip.myHomeY = clip._y;
    //the variables below will store the clips end position
    clip.myFinalX = targ._x;
    clip.myFinalY = targ._y;
    clip.onEnterFrame = function() {
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)"
    if (!this.beingDragged && !this.onTarget) {
    this._x -= (this._x-this.myHomeX)/5;
    this._y -= (this._y-this.myHomeY)/5;
    //if the circle is dropped on any part of the target it slides to the center of the target
    } else if (!this.beingDragged && this.onTarget) {
    this._x -= (this._x-this.myFinalX)/5;
    this._y -= (this._y-this.myFinalY)/5;
    dragSetup(drag1,drop1);
    dragSetup(drag2,drop2);
    dragSetup(drag3,drop3);
    dragSetup(drag4,drop4);
    dragSetup(drag5,drop5);
    dragSetup(drag6,drop6);
    dragSetup(drag7,drop7);
    //this code controls the reset button function and returns all of the drag objects to the start position.
    resetBtn.onRelease = function (){
    drag1.onTarget=false;
    drag1._x = drag1.myHomeX;
    drag1._y = drag1.myHomeY;
    drag2.onTarget=false;
    drag2._x = drag2.myHomeX;
    drag2._y = drag2.myHomeY;
    drag3.onTarget=false;
    drag3._x = drag3.myHomeX;
    drag3._y = drag3.myHomeY;
    drag4.onTarget=false;
    drag4._x = drag4.myHomeX;
    drag4._y = drag4.myHomeY;
    drag5.onTarget=false;
    drag5._x = drag5.myHomeX;
    drag5._y = drag5.myHomeY;
    drag6.onTarget=false;
    drag6._x = drag6.myHomeX;
    drag6._y = drag6.myHomeY;
    drag7.onTarget=false;
    drag7._x = drag7.myHomeX;
    drag7._y = drag7.myHomeY;
    //This code controls the submitBtn and feedback for a correct and incorrect answer
    var groupID:Array = [0,0];
    var incorrectFeedback:String = "That isn't correct.";
    var correctFeedback:String = "Excellent good work.";
    var answerGroup:Array =  [
                                                                 [drag1,drop1],
                                                                 [drag2,drop2],
                                                                 [drag3,drop3],
                                                                 [drag4,drop4],
                                                                 [drag5,drop5],
                                                                 [drag6,drop6],
                                                                 [drag7,drop7]];
    //Enable all the stage items
    resetBtn.onRelease = function()
              resetAll();
    submitBtn.onRelease = function()
              if(evaluateAnswers())
                        feedbackTxt.text = correctFeedback;
              else
                        feedbackTxt.text = incorrectFeedback;

    Here is an alternate link to the source / .fla file  - orig link was not to my public dropbox!
    https://www.dropbox.com/home#:::68035214
    or
    https://skydrive.live.com/?cid=bb539b6eff0afbf5&sc=documents&id=BB539B6EFF0AFBF5%21124#

  • Drag and Drop Listbox: Box 1 to Box 2 then same data dragged back to Box 1

    Right now, I have one listbox (1) with string data that can be dragged to another listbox (2).  However, I cannot take that same string data and drag it back to the original listbox (1).
    If I try to do that, the string data just disappears and I cannot retrieve it again.
    Thanks for any response, much appreciated!

    An example would help tremendously. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • Feedback Text for a Drag and Drop Interaction help

    I've developed an drag/drop interaction which works well, the issue is with the behavior of the submit reset buttons.
    If the "correct" drag objects are on the "correct" target - no issues
    The problem is if an "incorrect" drag/drop combination is selected, the "incorrect" feedback text displays and the reset button moves all drag object to the start position, but once the "correct" drag drop combination is submitted, the "incorrect" feedback text displays.
    The fla can be viewed here: skydrive.live.com/?cid=bb539b6eff0afbf5&sc=documents&uc=1&id=BB539B6 EFF0AFBF5%21114#
    Thanks in advance for any assistance/suggestions you can provide and for taking the time to read this post
    The relevant code is:
    On Frame 1:
    ActionScript Code: 
    function dragSetup(clip, targ) { clip.onPress = function() { startDrag(this); this.beingDragged=true; }; clip.onRelease = clip.onReleaseOutside=function () { stopDrag(); this.beingDragged=false; if (eval(this._droptarget) == targ) { this.onTarget = true; _root.targ.gotoAndStop(2); } else { this.onTarget = false; _root.targ.gotoAndStop(1); } }; //the variables below will store the clips starting position clip.myHomeX = clip._x; clip.myHomeY = clip._y; //the variables below will store the clips end position clip.myFinalX = targ._x; clip.myFinalY = targ._y; clip.onEnterFrame = function() { //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged) // then move the MC back to its original starting point (with a smooth motion)" if (!this.beingDragged && !this.onTarget) { this._x -= (this._x-this.myHomeX)/5; this._y -= (this._y-this.myHomeY)/5; //if the drag object is dropped on any part of the target it slides to the center of the target } else if (!this.beingDragged && this.onTarget) { this._x -= (this._x-this.myFinalX)/5; this._y -= (this._y-this.myFinalY)/5; } }; } dragSetup(drag1,drop1); dragSetup(drag2,drop2); dragSetup(drag3,drop3); dragSetup(drag4,drop4); dragSetup(drag5,drop5); dragSetup(drag6,drop6); dragSetup(drag7,drop7); 
    on the submitBtn:
    ActionScript Code: 
    on (press) {     if ((_root.drag1._droptarget == "/drop1") &&         (_root.drag2._droptarget == "/drop2") &&         (_root.drag3._droptarget == "/drop3") &&         (_root.drag4._droptarget != "/drop4") &&         (_root.drag5._droptarget != "/drop5") &&         (_root.drag6._droptarget != "/drop6") &&         (_root.drag7._droptarget != "/drop7"))     {         {             resetBtn.enabled = false;         };         {             feedbackTxt = "Yes, hardware installation, asset tagging and imaging are the best services to recommend to help your customer meet her deadline.";         };         {             drag1.enabled = false;             drag2.enabled = false;             drag3.enabled = false;             drag4.enabled = false;             drag5.enabled = false;             drag6.enabled = false;             drag7.enabled = false;         };     }     else     {         feedbackTxt = "Not quite.  At least one of services you chose isn't the best recommendation, or you did not chose all of the correct services.  Consider your customers business needs, click Reset and try again.";         gotoAndPlay("Scene 1", 1);     } } 
    on the resetBtn:
    ActionScript Code: 
    //this code controls the reset button function and returns all of the drag objects to the start position. on(Press) {  drag1.onTarget=false; drag1._x = drag1.myHomeX; drag1._y = drag1.myHomeY;  drag2.onTarget=false; drag2._x = drag2.myHomeX; drag2._y = drag2.myHomeY;  drag3.onTarget=false; drag3._x = drag3.myHomeX; drag3._y = drag3.myHomeY;  drag4.onTarget=false; drag4._x = drag4.myHomeX; drag4._y = drag4.myHomeY;  drag5.onTarget=false; drag5._x = drag5.myHomeX; drag5._y = drag5.myHomeY;  drag6.onTarget=false; drag6._x = drag6.myHomeX; drag6._y = drag6.myHomeY;  drag7.onTarget=false; drag7._x = drag7.myHomeX; drag7._y = drag7.myHomeY;  feedbackTxt = "";  } 

    Apologies abt the code format - here it is reposted so it can be read:
    I've developed an drag/drop interaction which works well, the issue is with the behavior of the submit reset buttons.
    If the "correct" drag objects are on the "correct" target - no issues
    The problem is if an "incorrect" drag/drop combination is selected, the "incorrect" feedback text displays and the reset button moves all drag object to the start position, but once the "correct" drag drop combination is submitted, the "incorrect" feedback text displays.
    The fla can be viewed here: skydrive.live.com/?cid=bb539b6eff0afbf5&sc=documents&uc=1&id=BB539B6 EFF0AFBF5%21114#
    Thanks in advance for any assistance/suggestions you can provide and for taking the time to read this post
    The relevant code is:
    On Frame 1:
    function dragSetup(clip, targ) {
    clip.onPress = function() {
    startDrag(this);
    this.beingDragged=true;
    clip.onRelease = clip.onReleaseOutside=function () {
    stopDrag();
    this.beingDragged=false;
    if (eval(this._droptarget) == targ) {
    this.onTarget = true;
    _root.targ.gotoAndStop(2);
    } else {
    this.onTarget = false;
    _root.targ.gotoAndStop(1);
    //the variables below will store the clips starting position
    clip.myHomeX = clip._x;
    clip.myHomeY = clip._y;
    //the variables below will store the clips end position
    clip.myFinalX = targ._x;
    clip.myFinalY = targ._y;
    clip.onEnterFrame = function() {
    //all these actions basically just say "if the mouse is up (in other words - the clip is not being dragged)
    // then move the MC back to its original starting point (with a smooth motion)"
    if (!this.beingDragged && !this.onTarget) {
    this._x -= (this._x-this.myHomeX)/5;
    this._y -= (this._y-this.myHomeY)/5;
    //if the drag object is dropped on any part of the target it slides to the center of the target
    } else if (!this.beingDragged && this.onTarget) {
    this._x -= (this._x-this.myFinalX)/5;
    this._y -= (this._y-this.myFinalY)/5;
    dragSetup(drag1,drop1);
    dragSetup(drag2,drop2);
    dragSetup(drag3,drop3);
    dragSetup(drag4,drop4);
    dragSetup(drag5,drop5);
    dragSetup(drag6,drop6);
    dragSetup(drag7,drop7);
    on the submitBtn:
    on (press) {
              if ((_root.drag1._droptarget == "/drop1") &&
                        (_root.drag2._droptarget == "/drop2") &&
                        (_root.drag3._droptarget == "/drop3") &&
                        (_root.drag4._droptarget != "/drop4") &&
                        (_root.drag5._droptarget != "/drop5") &&
                        (_root.drag6._droptarget != "/drop6") &&
                        (_root.drag7._droptarget != "/drop7"))
                                  resetBtn.enabled = false;
                                  feedbackTxt = "Yes, hardware installation, asset tagging and imaging are the best services to recommend to help your customer meet her deadline.";
                                  drag1.enabled = false;
                                  drag2.enabled = false;
                                  drag3.enabled = false;
                                  drag4.enabled = false;
                                  drag5.enabled = false;
                                  drag6.enabled = false;
                                  drag7.enabled = false;
              else
                        feedbackTxt = "Not quite.  At least one of services you chose isn't the best recommendation, or you did not chose all of the correct services.  Consider your customers business needs, click Reset and try again.";
                        gotoAndPlay("Scene 1", 1);
    on the resetBtn:
    //this code controls the reset button function and returns all of the drag objects to the start position.
    on(Press) {
    drag1.onTarget=false;
    drag1._x = drag1.myHomeX;
    drag1._y = drag1.myHomeY;
    drag2.onTarget=false;
    drag2._x = drag2.myHomeX;
    drag2._y = drag2.myHomeY;
    drag3.onTarget=false;
    drag3._x = drag3.myHomeX;
    drag3._y = drag3.myHomeY;
    drag4.onTarget=false;
    drag4._x = drag4.myHomeX;
    drag4._y = drag4.myHomeY;
    drag5.onTarget=false;
    drag5._x = drag5.myHomeX;
    drag5._y = drag5.myHomeY;
    drag6.onTarget=false;
    drag6._x = drag6.myHomeX;
    drag6._y = drag6.myHomeY;
    drag7.onTarget=false;
    drag7._x = drag7.myHomeX;
    drag7._y = drag7.myHomeY;
    feedbackTxt = "";
    Thanks again!

  • Drag and drop from Multicolumn listbox to another Multicolumn Listbox

    how do i drag and drop from Multicolumn listbox to another Multicolumn Listbox?/...any example..
    use LABVIEW 8.2.1
    regard's
    eyal.

    To drag and drop within the target listbox you'll have to add a Drag Starting? event for the target listbox and register that drag data with a different adn unique Drag Data Name, then in the Drag Enter? event check for that data name as well before accepting the event, and then in the Drop? event for the target listbox handle the new data name as well. You can use the Point to Row Column invoke method to determine which row, column, or cell is being manipulated. I've created a VERY crude example of this, but you'll have to get more creative with how you handle the moving of rows, columns, etc. for the target listbox, but I think it gives the general idea. Hope this helps!
    -rw
    Attachments:
    Drag and Drop Example v2 8.2.vi ‏28 KB

  • How to drag and drop text from one listbox to another

    I have a listbox of options(text) and would like to drag and drop each selection into a new listbox, one at a time. Then programatically highlight the selections in the new listbox as events happen.

    Hello Zoltan,
    I do not believe that kind of option is built into the listboxes, but I was able to have similiar functionalities using property nodes. I have included an example program that I put together.
    The big difference is that instead of dragging, you double click on the item you want to transfer. To highlight items as you go down the list, all you need to do is set the value to that list number.
    Hope this helps you out!
    Attachments:
    Temp.vi ‏33 KB

  • After sorting photos into albums, the albums disappeared on me. I dragged and dropped the photos and went back to check that they were in place before exiting the program. When I went back, the folder was there but no albums. Help!

    Working on an IMac - with IPhoto v.9.6 
    This is my first experience with IPhoto... trying to move files from a PC over to a Mac.
    I don't have a ton of photos but I created about 6 albums - standard albums - and dragged and dropped individual photos into each of the albums. I named each of the albums as well so I would know what was in each. After i was finished, I created a folder called 2014 and moved each of the albums into that folder. Before moving ANY of the albums, I opened each of them up to make sure that all the photos I wanted in each were indeed there - and since there were some errors on my part, I deleted any duplicates first. SO, I KNOW the photos were actually in each of the albums BEFORE i moved them into the 2014 folder.
    My intention was to then delete the photo files in my document file but once I got there I thought I would go back and double check the IPhoto file just to make sure... and the pictures were NOT in the albums where I had placed them... is there a need to save this before you move on and if so, to where and how? I was under the impression that once files were moved to albums, they remain there.
    The photos are still in the photo library but unsorted now again... I cannot even open the 2014 folder at this point.
    Thanks for any help!!

    Was back on IPhoto this morning. The folder did not open at all so I deleted it. Beside Albums, nothing showed at all. It was like I had done no work at all except to import my photo folder. Nothing was in my trash bin either.
    I started again and created one album at a time. I dragged and dropped photos into the album and exited out of IPhoto, opened up other programs and then returned to IPhoto to see if the album was still there and it was this time. I created a second album and did the same thing. This time, for some reason, the albums seem to be staying in place. I am not doing anything differently than last time. After creating three albums, I created a folder called 2014 and dragged and dropped the three albums into the folder and exited IPhoto. They were still there when I returned - YEAH! It seems to be working - for now! I am keeping my fingers crossed that my photos are not going to disappear but I am not going to delete my photo folder from my files just in case!
    Thanks for the suggestions but this may just have been a funny glitch... not sure what happened. I didn't change anything or do anything differently this time except that I am doing it one album at a time and exiting the program between creating each of them and coming back to check... very strange.

  • I can't drag and drop songs onto my iPod from iTunes. (Manual transfer is not working.)  Please help!

    Normally, I just select songs and I'm able to drag and drop them from my library onto my device.  I have an iPod Touch and an iPhone 4.  I want to drag and drop my songs from the library onto my iPod Touch.  I have already selected manual upload instead of automatic sync.  I tried suggestions from the Mac message board (since other people seem to have had a similar issue), and their solutions didn't work for me.  I have restarted both iTunes, my computer, and reconnected my iPod multiple times.  I don't know what's going on, and I can't find a fix anywhere in iTunes help.  If anyone knows what to do, or has any suggestions, please let me know!  Thanks.

    Update: I seem to have fixed the problem!  I went to the "summary" section of my iPod after clicking on the device on the left side of iTunes.  I checked the box that allowed me to "manually manage music and videos" and applied this option.  The songs are syncing!  And, yay, they're playing on my iPod now!  Hopefully, this helps anyone else who might have this problem.  There might be other issues, but this is working for now.

  • Flash Drag and Drop Template in Captivate.  *HELP*

    Good morning.
    I am attempting to use the drag and drop learning interaction
    that comes pre-packaged with Flash CS3 and import it into Captivate
    for use in a Captivate based e-learning exercise.
    I create the drag and drop just fine in Flash, and it looks
    perfect when I publish it in Flash, etc.
    When I attempt to use the EXACT same SWF in Captivate,
    however, it does not work. I can move the drags around the screen,
    but they will not "drop" where they are supposed to.
    Thinking maybe I broke the template, I went ahead and just
    imported it 100% unchanged from Flash into Captivate (without me
    messing around with it changing things around) and it does the
    exact same thing.
    I have successfully used my own homemade flash "widgets" in
    Captivate, to include like click and reveal type interactions...for
    whatever reason, though, I can't get this one to work, even though
    I know it works perfectly in Flash.
    The .swf file was developed using ActionScript 2.0 in Flash
    and I tried publishing it with Flash 9 and Flash 8 as the setting,
    both do the same thing.
    Help!!!?
    Thanks.
    Rob

    Hi R
    Note that the Border simply adds space to the project so the
    playback controls aren't covering part of your movie. Assuming you
    want that to continue AND have a playback control, you might resize
    the project so the playback control is included in the main movie
    as well as being placed in an area that doesn't possibly obscure
    any screen activity.
    Cheers... Rick

  • 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?

  • I just purchased Time Capsule today.  I ONLY want to use it as an external drive.  I do not need it for Time Machine. I can see the TC in my finder, but when I click on a file or video to drag and drop, I get message that TC can't be modified. Help please

    I just purchased Time Capsule today.  I ONLY want to use it as an external drive.  I do not need it for Time Machine. I need to free up room on my computer. As of now, I can't even load updates. I can see the TC in my finder, but when I click on a file or video to drag and drop, I get message that TC can't be modified. Help please!

    I agree with Kappy.. passing files and especially via wireless is slow as slow.
    Just need to be sure your TC is the new AC model??
    And the OS on the computer is Lion?
    Have you completed the setup of the TC via the utility? You do still need to get internet via the TC so it has to be plugged into the main router..
    Give us the full picture of the network.
    Then we can help you get into it.. whether you should put your files on it is another question.

  • Drag and drop issue, please help.

    I can no longer drag and drop photos within photoshop elements 12.  When working with a layer, I want to move it to a layer within another existing file, and no longer have the option.  The only way I have fixed the issue in the past is uninstall and reinstall the program.  I've read other forum posts and followed the instructions by resetting preferences and it does not work.
    Does anyone have any solutions to this issue?  Please help!

    With both files open, simplest to tile them side by side, you should be able to drag the layer from the source file onto the target file. So long as it shows the 'grasping hand' you can release the mouse and it should add the layer to the target.
    So what is happening now on your system? When you drag the layer to the target what icon is shown - 'grasping hand', 'no entry', something else?
    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.

  • I recently uploaded some pics and videos from an ipad and a camera. I put them all on Iphoto and backed them up in my personal folder. I then trimmed one of the videos and dragged and dropped that into the master folder(pictures). Its now gone!! HELP!?!?!

    I rencently added all my photo's from my Ipad and Camera. There were photos and videos on both. The import was done through Iphoto and then transfered to my backup in my pictures folder. I then took one of my videos and trimmed it and then addded that trimmed version to my back up(pictures)albumn. It asked If i wanted to replace existing photo or cancel and I hit replace. Now the file plays great on Iphoto but I am unable to share it through any form(facebook, Imessage etc) and in my back up(pictures) it says the file in only 87kb. I dragged and dropped it from Iphoto to the desk top along with another important video, when I hit get info on both of them one of them is a full sized video(50mb or whatever) and the other one(the one I am trying to recover) is only the 87kb. I want this full file avaiable to me how can I get it back?? it is already deleted off the camera??? please please help me.

    Garret,
    is your movie in your backup folder a Quicktime movie? Then probably only have the Quicktime wrapper in your backup folder, but not the referenced media in the file fork of the movie. If you see the full quality movie in iPhoto in QuickTime player, don't drag it from the browser to the Desktop, but use "File > Reveal in Finder > Original File" to show the movie in your iPhoto Library. Select the Movie when it is revealed and ctrl-click it to open it in Quicktime Player.
    Export it from Quicktime Player with "Export to" and share it to iTunes. This way it will be converted to a .mp4 movie that embeds the missing resources.
    You can drag the converted movie from iTunes to the Desktop or share it using to Media Browser to other applications.
    Regards
    Léonie

  • Why am I having trouble importing vCards? I follow the Help Center instructions by dragging and dropping, but some don't sync into the cloud. And why can't I drag multiple vCards? I have over 4,000. Please tell me I don't have to do one at a time?

    Why am I having trouble importing vCards? I follow the Help Center instructions by dragging and dropping, but some don't sync into the cloud. And why can't I drag multiple vCards? I have over 4,000. Please tell me I don't have to do one at a time?

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • Hi - I keep receiving the following error message on a song I purchased from itunes and am now trying to drag and drop to my iPad: "you must download items from icloud before you can copy then to iPad" what does this mean - please help! Thank you

    Hi - I keep receiving the following error message on a song I purchased from itunes and am now trying to drag and drop to my iPad: "you must download items from icloud before you can copy then to iPad" what does this mean - please help! Thank you

    Hi Poonam26c,
    If you do not have a local copy of a song which you have purchased (i.e. it is available via iTunes in the Cloud), you may need to redownload it before you can transfer it to your device. You may find the following article helpful:
    Apple Support: Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT2519
    Regards,
    - Brenden

Maybe you are looking for

  • How can i synchronize incoming pdf files with adobe reader

    i have just set up my new pc and now whenever i receive a pdf file i can not edit it, unless i go through x amount of steps. opening adobe, opening the file and every time the same proceder. what to do that pdf files get automatically upon downloadin

  • N70 Wont boot up with mmc???

    Basicly ive had this fone for about 3 days. and suddenly it wouldnt turn on.. it just froze when it got to the the 'nokia' bit at the start so i took the battery out,put it back in and turned it on again... still no luck so i took the standard 64mb M

  • HT1386 Why does iTunes reinstall all my photos every time I sync with my iDevice?

    I store over 10000 photos on my ipad and iphone. It doesn't usually happen, but lately, when I sync with my device via iTunes, it deletes all my photos and resync them back in. Which dramatically increase my sync time from a few minutes to half an ho

  • Check In failed for the activity

    Hi,     Here we have developed a Webdynpro application through JDI. We have created an activity for the application. The application is working fine, but we are facing the problem with the check in. It is saying check in failed for the activity. Belo

  • Iphone 5 goes direct to voicemail

    Why does my Iphone 5 goes direct to voicemail?