No drag & drop function? (iphone photos to mac desktop)

Trying to just backup my photos that i take on my iPhone..... why can't I drag & drop them to my desktop (like i do from my camera memory cards)? Do I have to use iTunes - because it's very time consuming... more than that, it's hard to keep track of what you've backup up...

That is not possible. You cannot drag photos from the computer back to the camera roll. You have no access to the camera roll in that direction, only from the camera roll to the computer. To put pictures back on the phone from the comptuer requires iTunes and the sync process. You can select the photos you want in iTunes once the iPhone is connected, then select the photo tab, select the photos and perform a sync.
You cannot do it without iTunes.

Similar Messages

  • Drag & Drop Functionality Doesn't Work in External SWF?

    Hi all,
    I'm currently a TA for a Flash course at my school.  We're using AS 2.0 and working with external SWFs.
    I think this might be pretty simple to remedy.  Well, at least I'm hoping!
    A student is having trouble with drag & drop functionality when it  is used in an external SWF.  Basically, in our drag & drop section,  we have a sheet of paper ("paper" MC) and an object we drag into it  ("object" MC).  When the object is released in the paper area, we go to  frame 2 of "paper" MC, which consequently has an animation.
    This works fine and dandy in said drag & drop section, but once the  drag & drop section is loaded into our main SWF via a MC  placeholder, the drag & drop functionality stops working.
    Here is the URL to the drag & drop section by itself:
    http://www.phayzed.com/flashkit/drag_for_animation.swf
    and here is the URL to the main swf, which loads the drag & drop SWF into a movieclip and causes it to work incorrectly:
    http://www.phayzed.com/flashkit/main.swf
    Now here is the code on the draggable object ("object" MC):
    on (press) {
            startDrag (this, true);
    on (release) {
            stopDrag ();
            if (this._droptarget == "/paper") {
                    _parent.paper.gotoAndStop(2);
                    _parent.object._visible=false;
    If any more info is needed, I'm willing to upload both FLA files.   Although, something tells me that this is a simple issue to resolve.
    Thanks a lot for any help!!!
    Cheers
    T

    with as2 you must convert that antiquated as1 code:
    on (press) {
            startDrag (this, true);
    on (release) {
            stopDrag ();
            if (eval(this._droptarget) == _parent.paper) {
                    _parent.paper.gotoAndStop(2);
                    _parent.object._visible=false;

  • Best approach to work with drag & drop functionality

    I m new to java technology & want to implement drag & drop functionality with java web application.so, Please suggest me the best way or best framework or any api to implement drag & drop functionality with java web application.

    In that case, you're most likely looking for a JavaScript solution. In spite of the similar name, JavaScript has nothing to do with Java.
    You may want to Google for "javascript drag and drop".

  • How to Rearrange components using Drag Drop functionality

    Hi,
    Is it possible to re-arrange the components inside the form using drag drop functionality in RCF?
    There are 3/4 section headers in my screen, user can re-arrange them.
    But as per the RCF document it says, "Drag Drop functionality allows users to drag the value of one component and drop it on to another". It dosent say any thing about component drag-drop.

    Hi,
    there is a componentDragSource element that you use for this. However, persisting the change of location is not handled automatically. I didn't try this, but I assume that using the component drag option gives you access to the UI component itself so you can nest it in another container
    Frank
    Ps.: the drag event always givey you access to the component. This componentDragSource however shows the component when dragging, which is a slightly better indicator if you plan to re-arrange items

  • Drag & Drop functionality

    Hi Friend
    I'm using flash professional cs5.5. I have doubt in drag and drop functionality.
    1) Drop a object in mouse up
    2) Drag the object in mouse down
    Two Movie-clip (Button) on the stage. I have clicked the first Movie-clip, image will added to the button. and drag that image move to second button. It's working fine.
    I have doubt in add image and drag the image, How do split up the sequence???
    Thanks

    Your explanation is not clear (to me).  Can you show the relevant code you have and explain what you want it to do?

  • Urgent : Drag Drop Functionality

    Hi All,
    I have a datagrid with the drag drop enabled. My requirement is that when I drag the items I shouldn't see the dragged item ( the entire dragged row as such ) but by default Flex has the functionality which shows the entire dragged rows content on mouse move. Please help me out like how can i make thie entire row's visibility to false when i move the mouse with the selected item in the Datagrid

    When you perform drag and drop, you doesnt want to see the item which is getting dragged. Then don't specify the proxy (it can be image, data) which reflects while dragging.
    On mouse move handler of the dragging object you will specify DragSource
    For ex:
    private   function doDragOperation(evt:MouseEvent):void
    var img:Image = evt.currentTarget as Image; 
    var temp:Image = new Image();temp.source = no_icon
    temp.width = 1;
    temp.height = 1;
    var dsource:DragSource = new DragSource();dsource.addData(temp,
    'img'); 
    DragManager.doDrag(img, dsource, evt,temp);
    Message was edited by: VijiNaga

  • Hello, my iphoto on my mac OS X Version 10.5.8 will not launch after talking with an apple support tech.  She had me sinc my iphone to my mac desktop and my photos downloaded from my iphone and were at the bottom.  Now the iphoto will not launch.

    My iphoto app will not launch after talking with an apple tech support who had me sync my iphone 4S with my mac desktop.  The pictures downloaded from my iphone and after disconnecting from the Apple help, my iphoto had disappeared from the very bottom of the screen and will not launch.  Can you help me retrieve my pictures.  They are still on the computer.

    Any help here:
    http://support.apple.com/kb/HT2638?viewlocale=en_US&locale=en_US

  • Tree drag-drop function

    hello all,
    there is one single tree component in my application.
    XML is dataprovider of that tree.
    e.g
    <node name="Cars" id="1" isparent="true">
    <node name="Audi" id="2" isparent="true">
    <node name="A4" id="3" isparent="false"/>
    <node name="A6" id="4" isparent="false"/>
    </node>
    <node name="Mercedes" id="5" isparent="true">
    <node name="M-Class" id="6" isparent="false"/>
    <node name="R-Class" id="7" isparent="false"/>
    </node>
    </node
    when i drag one node and drop to another node, how can i know the xml value of
    both source & destination node?
    e.g
    we are Dragging 'R-Class' node to 'Audi' node, on dragComplete OR dragDrop
    event, how to get R-Class node id 7 & Audi node id 2 in different variables.
    So we can check some validation of node and perform drag-drop operation.
    Any idea?
    Steve Roger.

    actually what i want to implement is like :
    When drapDrop event complete, i want XML value of both nodes (source & target) in variables.
    Then I will show dialog box having some options & instructions (e.g You wanna Move node OR Copy node to target).
    Depend on user selection, do the operation.
    hope u get application scenario.
    is this possible for tree control using drag drop? if so, then how?
    Please help.
    Thank you,
    Steve Roger.

  • Unable to syn iPhone photos to mac

    I have been able to sync manually with a usb cable from my iPhone 4 to my Mac desktop in the past but it has become harder and harder until now I am unable to sync.
    When asked to import images it is unable to complete the job and I wind up with the spinning pin wheel. After a while of this I Force quite iPhoto. I have seen that this is not an unfamiliar issue but I can't find an answer that works for me. Any answers would be greatly appreciated.

    Thanks for your help. Works great when done in the proper order. Also we are using wifi to do this.
    Thanks  margtwiss.

  • LR mobile Sync of iPhone photos to LR desktop? Not sure if it is working....

    I created a collection on my iPhone by importing all 3000 or so iPhone pictures. It is slooooooowly syncing to my desktop lightroom (5.5). Above the signature block in LR desktop there is a line that says "Syncing 72 photos." In the Collections section, there is a collection called "From Lr Mobile" that with a sub collection that shows 417 photos. That number is rising more slowly than the number above the signature block is rising. Neither number is close to the 3000 in the collection that was created by importing pictures on my iPhone.
    I have been syncing for days. Is there a way to speed things up? Am I asking too much of LR mobile? I was thinking this maybe a useful way to get my iPhone photos archived directly into my desktop LR; not clear if that workflow will work.
    Thanks.

    Firefox 4 and later version have Sync built-in, no add-on is necessary. The "icon" in the Statusbar that was used by the extension is gone, but there is a Sync toolbar button sitting in the Customize Palette which you can place on a toolbar where you want it. Hover the cursor over the button to see the status of the Sync connection.<br />
    https://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar <br />
    http://kb.mozillazine.org/Toolbar_customization
    Click the orange Firefox button and you can see the status of Sync, too. If Sync isn't setup, the app menu shows '''Set Up Sync...'''. Once Sync is setup and operational, that menu item will show either '''''Connect''''' if Sync isn't connected to the Sync server, or '''''Disconnect''''' when it is connected.

  • LR4 wont let me Drag/Drop to organize Photos or Folders

    For some reason I'm unable to move photos or folders from within lightroom 4. The drag and drop system from the library module does nothing for me. I'm pretty sure I just watched an AdobeTV demonstration where the presenter had no problem moving files inside the "Folders" panel in the Library. I've even tried highlighting the photos I want to move from the grid view, control+clicking on the folder where I want them to go, selecting "Move Selected Photos to this Folder" from the flyout, and nothing happens.
    My cursor shows a green plus(+) icon when I mouse over the destination folder when dragging the photos, as if LR were going to add the files to the folder.... but then nothing happens.
    Am I losing it, shouldn't this be a completely intuiative process? Is it possible I've locked my files/photos?

    No question marks, but I did create a new admin level user. I was asked to create a new catalog, which I put on my desktop. I then downloaded two images from the web, imported them, and created a couple folders in my library. Here I was finally able to move the imported images back and forth between folders within Lightroom without a problem (only prompted that the move could not be undone).
    I logged back into my default/admin user and created a brand new catalog. Unfortunately, going through the exact same steps written above did not repeat the same results, I was unable to move any files inside lightroom, so it seems the catalog isn't to blame.
    I don't know what kind of settings LR4 recreates when I logged in as a different user, but clearly that seems to be the variable that's keeping me from moving files.

  • Automatically add iPhone Photos to Mac

    So I've been using my iphone to take pictures since I got it about 8 months ago and have tried to search everywhere on the internet to find a good solution to the problem. I went to the apple store today and the rep that helped me just typed my question into google; the same thing I did right before I went to see him...
    Question: How can I set up my mac/iphone so that each time I sync, the iPhone will dump any new pictures I have taken into an iPhoto album AUTOMATICALLY?
    I have it set up now so that each time I sync the iPhone, iPhoto opens but I still have to manually select "import all" and even still they dive into 8 different "untitled" events. I want to just plug in the phone and any new pics I have taken dump into an event or an album called Pics From iPhone or something like that and then I can sort them however I please. Please someone help me with this, I feel like it should be a very easy solution.

    I'm not aware of any option for iPhoto to automatically import photos from any digital camera when a digital camera is connected, including from the iPhone's camera roll.
    The iPhoto auto-split into Events option or preferences when importing photos from a digital camera is as follows:
    One event per day.
    One event per week.
    Two-hour gaps.
    Eight-hour gaps.

  • Text and Image Drag Drop Functionality within TLF

    Is there any way by which  I can use select the text or inlinegraphic and drag and drop it within same component?

    if you want to drag and drop ILG within TLF,of course ,you can!
    somebody has made it
    http://diding.javaeye.com/admin/blogs/345239

  • TileList Drag/Drop functionality is broken if the same item is dropped twice or more

    Hi Folks.
    This is quite frustrating.
    I'm using two tilelists and you can drag items from one to
    the other.
    If you drag an item more than once then when you rollover
    that item it highlights the second(or most recent) version of the
    item you dragged.
    Basically the second tile list is containing exact copies of
    the first, so that when you rollover an item it is behaving as if
    only the most recent addition to the component is there.
    Here is the code.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" width="560" height="341">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    private var listArray:Array=[
    {label: "item0", data: 0},{label: "item1", data: 1},
    {label: "item2", data: 2},{label: "item3", data: 3},
    {label: "item4", data: 4},{label: "item5", data: 5},
    {label: "item6", data: 6},{label: "item7", data: 7}];
    [Bindable]
    public var cartFilterCol:ArrayCollection ;
    ]]>
    </mx:Script>
    <mx:Canvas width="568" height="340">
    <mx:TileList
    id="filterTilelist"
    direction="vertical"
    dataProvider="{listArray}"
    itemRenderer="mx.controls.Button"
    allowMultipleSelection="false"
    dragEnabled="true"
    width="219"
    borderStyle="inset" height="228" x="48" y="36">
    </mx:TileList>
    <mx:TileList backgroundColor="#ffffff"
    dataProvider="{cartFilterCol}"
    dropEnabled="true"
    allowMultipleSelection="false"
    dragMoveEnabled="true"
    dragEnabled="true"
    borderStyle="inset"
    columnCount="1"
    height="228" width="194" x="275" y="36">
    </mx:TileList>
    </mx:Canvas>
    </mx:Application>
    I think this is the issue here
    https://bugs.adobe.com/jira/browse/SDK-11894
    It seems to suggest that this issue is resolved but it
    doesn't go into details. Can anybody help me, even an ugly hack
    would do? Have tried several things like manually setting the
    mx_internal_uid on object beign dragged before it is dropped but no
    luck so far. I'm using Flex builder 2.0.1.
    Thanks
    Rob

    Check that you still have the "Bookmarks Toolbar items" placed on the Bookmarks Toolbar
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button
    You can only move the content from a toolbar onto other toolbars if all toolbars support that feature. You need to check that in the options of each toolbar.

  • Drag-drop functionality between regions

    Hi all,
    Can we drag and drop a content from one region to another region.
    I have the following situation:
    I have a taskflow where CollectionsDragSource is implemented and I intend to drop target(<af:dropTarget) onto a component in a new JSF Fragment Page of a different taskflow. How do i do this?
    Thanks in advance

    See if this helps you.
    http://adfblogs.blogspot.com/2011/03/region-interation-example-2-using-adf.html
    -Arun

Maybe you are looking for

  • Need to change Tax code in po but GR and IR also completed

    Hi Gurus,             I have one issue in the po, the line item "xxxxxxx" in the PO It shall be 36 instead of 39.but it is GR and IR also completed,now we need to change the Tax code,for this we need to cancel IR and GR or without cancel GR, IR also

  • Re: Re Support request to KCCC

    In 2010 KCCC my employer, procured licensed Windows  Server 2008 OS from a vendor who has now closed the company, now coming to 3 years since date of closing. Mid this year our Windows Server System untimely closed down! In the process of recovering

  • Book with Table of Contents and Index

    I want to write a genealogical book over 100 pages long, including photos, charts, and lots of text. My last book was on a PC using Adobe PageMaker, and I liked its ability to create a Table of Contents and an Index, both of which adjusted automatica

  • After updating my iPod to 5.0.1 it won't connect to wireless networks

    Anyone noticing this problem? I updated to 5.0.1 but now the iPod won't connect to the wireless network. It's not a network problem because my iPad is connected to the same network and I also used this network to update my iPod. It didn't have the pr

  • Numbers to words

    Hi can some one tell me how to convert number into words . thanks..