Help with uploading my photos to phone 2 computer!

I bought a microSD 2 GB Scandisk 4 the phone and I can't find anywhere on my computer when I hang it. Sum one please help me! I tried 2 follow the instructions in the book, but when I click on my computer I can't find the removable disk icon. What's wrong? I'm doing something wrong? Help, please! I have a lot of photos I want 2 load my phone on 2 my computer part 2 with the family. Thank you

Kengie22

If the photos transferred correctly in the crush, now, they should be about 2GB microSD memory card that you have correctly installed in the crush, not permanent internal phone memory.

No USB cable yet to connect.

Check with this menu path:

  • Settings > memory > card memory > Pictures, y at - it something in this directory?
  • If so, you are ready to connect the USB cable to the computer and transfer the pictures from the memory card from the phone to the computer.
  • You can copy and paste or use the mouse to drag and drop in the directory you want the photos in.

See page 47 of the steps 1-5 manual overwrite for further advice...

(Motorola Crush manual entitled "about your computer" section)

Tags: Motorola Phones

Similar Questions

  • Help with opening a photo program help links

    Install a program called INTELLI_STUDIO for my photos

    Almost all of my photos have become small 90 s "s X 60".

    I went to the program help index and sought to help with that.

    My pointer cannot open files that I need to

    What should I do to fix this?  TY

    Hi Daniel,.

    1. Are you referring to Samsung Intelli-studio?
    2. Why you have this program installed? What exactly do you want to perform?

    If you are referring to Samsung Intelli-studio please contact Samsung because it their software and there will be a better person to help you with this problem.

    Please report if you need assistance on issues related to Windows.

  • Need help with a xml Photo Gallery

    First of all, Hello to everyone. My name is Tudor, I'm from Romania and I have a flash project that involves the XML construction by scrolling photo gallery. Sorry if my English will slip in some sentences. Well, the question for which I have to get an answer is: I have already built the Gallery, everything works fine... but... when I want to make some changes when loading images... Well, here's the problem. I print the code and briefly explain and ask at the end...

    import com.greensock.TweenLite;

    import com.greensock.TweenMax;

    Import fl.transitions.Tween;

    Fl.transitions.easing import. *;

    Fl.transitions import. *;

    Import fl.containers.UILoader;

    var MASK_WIDTH:Number = myMask_mc.width;

    var menuHolder:MovieClip = new MovieClip();

    menuHolder.x = myMask_mc.x;

    menuHolder.y = myMask_mc.y;

    addChild (menuHolder);

    var mouseIsOver:Boolean = false;

    var oldX:Number = menuHolder.x;

    menuHolder.mask = myMask_mc;

    to import flash.filters.ColorMatrixFilter;

    Import fl.motion.AdjustColor;

    var color: AdjustColor;

    colorMatrix var: ColorMatrixFilter.

    var matrix: Array;

    var filterBW: Array;

    color = new AdjustColor();

    Color.Brightness = 20;

    Color.Contrast = 20;

    Color.Hue = 0;

    Color.saturation = - 100;

    matrix = color. CalculateFinalFlatArray();

    colorMatrix = new ColorMatrixFilter (matrix);

    filterBW = [colorMatrix];

    HERE I read and parse the XML

    var xmlLoader:URLLoader = new URLLoader();

    var xmlData:XML = new XML();

    xmlLoader.addEventListener (Event.COMPLETE, LoadXML);

    xmlLoader.load (new URLRequest ("C:/Documents and Settings/Sm/Desktop/feteModel.xml"));

    function LoadXML(e:Event):void

    {

    xmlData = new XML (e.target.data);

    ParsePictures (xmlData);

    }

    function ParsePictures(input:XML):void

    {

    var mainPictures:Array = new Array();

    var firstPictures:Array = new Array();

    var secondPictures:Array = new Array();

    var thirdPictures:Array = new Array();

    var forthPictures:Array = new Array();

    var dimensiuniArray:Array = new Array();

    var heightArray:Array = new Array();

    var eyeColorArray:Array = new Array();

    var hairColorArray:Array = new Array();

    var numeArray:Array = new Array();

    var mainPicturesList:XMLList = input.fata.pozaPrincipala;

    var firstPicturesList:XMLList = input.fata.poza1;

    var secondPicturesList:XMLList = input.fata.poza2;

    var thirdPicturesList:XMLList = input.fata.poza3;

    var forthPicturesList:XMLList = input.fata.poza4;

    var dimensiuniList:XMLList = input.fata.dimensiuni;

    var heightList:XMLList = input.fata.inaltime;

    var eyeColorList:XMLList = input.fata.culoare_ochi;

    var hairColorList:XMLList = input.fata.culoare_par;

    var numeList:XMLList = input.fata.nume;

    for each (var element1:XML in mainPicturesList)

    {

    mainPictures.push (item1);

    }

    for each (var element2:XML in numeList)

    {

    numeArray.push (item2);

    }

    HERE I UPLOAD THE PHOTOS... I must say that menuItem is a mc - implemented as a class, which has essentially within a textfield and a UILoader a preloader - also movieclip. Also, I need the images to be black and white when they are displayed, and when the mouse is on color

    for (var i = 0; i < mainPictures.length; i ++)

    {

    var menuItem:MenuItem;

    menuItem = new MenuItem();

    menuItem.y = 200;

    menuItem.x = (i * (menuItem.width + 1)) + 150;

    menuItem.itemLoader.filters = filterBW;

    menuItem.itemText.text = numeArray [i];

    menuItem.itemLoader.source = mainPictures [i];

    menuItem.itemLoader.maintainAspectRatio = false;

    menuItem.itemLoader.addEventListener (Event.COMPLETE, completeHandler);

    //menuItem.itemLoader.addEventListener (Event.COMPLETE, uiLoaded, false, 0, true);

    //menuItem.itemLoader.addEventListener (ProgressEvent.PROGRESS, progressHandler);

    / / menuItem.itemLoader.load ();

    //menuItem.preloader_mc.visible = true;

    int completeHandler(event:Event)

    {

    / / trace (menuItem.itemText.text);

    }

    menuItem.mouseChildren = false;

    menuItem.buttonMode = true;

    menuItem.addEventListener (MouseEvent.MOUSE_OVER, mouseOverItem);

    menuItem.addEventListener (MouseEvent.MOUSE_OUT, mouseOutItem);

    Add the menuItem to the menuHolder

    menuHolder.addChild (menuItem);

    }

    menuHolder.addEventListener (MouseEvent.MOUSE_OVER, mouseOverMenu);

    menuHolder.addEventListener (MouseEvent.MOUSE_OUT, mouseOutMenu);

    function mouseOverMenu(e:Event):void

    {

    mouseIsOver = true;

    //Calculate the vertical distance of extent to which the mouse is

    //the topleft of the mask.

    var distance: Number = mouseX - myMask_mc.x;

    //Calculate the distance in percentages

    var percent: number = distance / MASK_WIDTH;

    //Save y holder old coordinate

    oldX = menuHolder.x;

    var targetX:Number =-((menuHolder.width-MASK_WIDTH + 150) * percentage) + myMask_mc.x;

    //Tween the menuHolder at the coordinate of the target

    TweenMax.to (menuHolder, 5, {x: Math.round (targetX)});

    }

    This function is called when the mouse is on the menu

    function mouseOutMenu(e:Event):void

    {

    mouseIsOver = false;

    }

    var tw1:Tween;

    var tw2:Tween;

    function mouseOverItem(e:Event):void

    {

    var point: MenuItem = e.target as MenuItem;

    menuHolder.addChild (item);

    item.itemLoader.filters = [];

    / / trace (item.itemText.text);

    tw1 = new Tween (element, "scaleX", Strong.easeInOut, 1, 1.25,0.25,true);

    tw2 = new Tween (order of the day, "scaleY", Strong.easeInOut, 1, 1.25,0.25,true);

    }

    This function is called when the mouse moves out of the element

    function mouseOutItem(e:Event):void

    {

    var point: MenuItem = e.target as MenuItem;

    item.itemLoader.filters = filterBW;

    tw1 = new Tween (object, "scaleX", Strong.easeInOut, 1.25, 1,0.25, true);

    tw2 = new Tween (point, "scaleY", Strong.easeInOut, 1.25, 1,0.25, true);

    }

    }

    ////

    Now I want each image to scale when loading fully... I thought that simply put it on the completeHandler function, but here's the problem: it measures only the last photo... for example. If there is 5, he played only the 5th... I tried to find the name of the image within the completeHandler and also, I had 4 identical names - the name of the last picture... my question is: why the completeHandler triggers only for the last item?   Anyone have any idea why this is happening? Plus, how can I solve this problem? Please... I'm burning my brain here for half a day here...  THANKS in advance!

    Best REGARDS, Tudor

    You are welcome.  It will work, but if you have any problems, simply start another view showing the code (not all what you have done for this) and someone will probably try to help.

  • How to transfer photos from phone to computer android?

    How to transfer photos from my phone to computer android

    Hello

    Thank you for visiting Microsoft Community.

    As I understood it, you want to know how to transfer photos from phone android to the computer.

    Certainly, I understand your concern.

    I would suggest trying the following steps and check if that helps.

    1. Download and install the USB drivers for your smartphone to your computer.
    2. Insert one end of the cable into the USB connector on your smartphone mini mini USB sync and the other end to a USB port on your computer.
    3. On your smartphone, hold and drag the notification bar and tap the icon USB
    4. Press Activate USB Storage , then OK.
    5. On the computer, click Start and then click computer. The micro-SD card in your smartphone is listed as removable disk.
    6. Double-click the removable disk to open it. Double-click the DCIMfolder and following the camerafolder.
    7. Copy the photos and videos in this folder to any folder on your computer.

    Important: If the removable disk does not appear in my computer, verify if the USB icon is displayed on your smartphone. If the icon is not visible, try to connect the smartphone to another USB port and follow the steps above.

    For reference:

    We may also refer to the article below and check if that helps.

    Import pictures and videos from a camera phone or a DVD

    http://Windows.Microsoft.com/en-us/Windows-8/import-photos-videos

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

  • help with uploading photos from iPhone 5S for mac

    I need help, download of images from my iPhone to my mac 5. I have connected the phone to the computer and don't know what to do next.

    Help wi

    Please carefully read import photos and videos from your iPhone, iPad, or iPod touch to your computer - Apple Support

  • Need help with uploading photos to the new macbook

    I just bought a macbook pro 13 inch and had all my old files saved on a WD My Passport for Mac external hard drive. When try to import my library of photos from the external hard drive to the macbook, I receive a message reading "none of these files can be imported into your photo library.

    I read that you are unable to import the whole photo library to another library of photos, but I don't know if I understand that correctly. in any case, can someone please walk me through how to fix this problem, because a lot of these photos are very important to me. In case this is useful, I was able to import more pictures of the new photo library (such as those that have been saved on the desktop, iCloud etc.)

    Sorry, but unless you detail we can without help

    What format is the WD MyPassport? What you have on it (your library of Photos or just Photos)?

    You import photos - you open and migrate the library

    What version of the OS and the Photos or iPhoto do you have on your old system?

    LN

  • Please help with my babys photo

    I want to print this poster and gift to my husband for our anniversary... I tried to extract it but could not do things.

    I would like to give it a more professional look by changing the background of plain or any texture.

    I have 3 photos in the link and I'm not sure which one would be a good one to use.

    Any advice/help would be greatly appreciated.

    http://CID-71af37ec07ce01a6.SkyDrive.live.com/redir.aspx?page=play & RESID = 71AF37EC07CE01A6! 324

    I'm glad that you liked the example.  The layers are gone because I merged, while the PSD would not help you.  I'd be happy to do it again and post it for download if I could figure out how to upload the original photo.  The link you posted pointed toward a slide show and the screenshot of your photo, I made was a really low resolution.

    To energize the fast color photo I duplicated the background layer, set mode to multiply fusion and merged the two layers, but normally I would have loaded the photo in Camera Raw and made the adjustments there to give the picture more contrast and brightness...

    The effect of light, I duplicated the layer and set the blending mode to screen.  Then I reduced the opacity to the desired lightness and added a layer mask. I filled the layer mask with black, and with the still selected layer mask, I used a white brush to paint on the face area, which makes this area appear lighter.

    I have merged all the layers again.  To make the background blur, I duplicated the layer and added a (Filter - Blur - Gaussian Blur) Gaussian blur.  I added a layer mask to the blurred layer and with the white mask layer selected, added a black to white summary in the mask down to mask away the blurring of the background of the photo. With the always selected layer mask, I used a black brush to paint on the costume and the baby to hide away the blur.

    In Camera Raw, I cropped the photo and added a sticker to darken the edges and corners a bit.

  • Newbie needs help with old concert photos

    I'm just getting started with PS > was my main reason for getting the program to edit hundreds of photos together, I took in the 1970s on 35 mm film and was developed by post in enterprises (don't forget Clark, anyone?)  Most of the pictures are ugly, but they have great sentimental value and it's time for me to try to resurrect them.  Like most beginners, I find PS overwhelming but want to dive in.  Can someone give me some guidance on the necessary basic to begin steps to improve these photos, which are among the worst of them, because in addition to poor exposure, developers cut the negative through the image, and then recorded back together and printed the photo I scanned recently.  I need some basic first steps to improve the overall image and then get rid of the line.  I want to do it myself, I'm not asking anyone to do it for me.  Any help would be appreciated.  Thank you very much.11132015_0010.aJPG.JPG11132015_0036a.JPG

    Just for fun, I spent a few minutes. Yes, I did:

    1 levels. To make things dark concert. I cut the bottom of range.

    2 auto-ton, Auto color, auto contrast

    3 painted a quick mask fuzzy brush on the Cup

    4 use content-aware fill. (for the record, it is really sloppy and could do much better).

    5 adjusted levels once again, but adjusted the darker Middle slider. To taste.

    6 saved.

  • Problems with uploading the photos on Facebook - Photoshop elements 9

    Yesterday I managed to upload photos on Facebook with no problems, but today I just keep getting a message to say that I can not download.  I get a message saying "there is a problem with your internet connection.  "Please check that the firewall does not block elements Organizer or if you have an internet connection.  The firewall is not blocking it and I have an internet connection, I can download on Flickr and I attach to the email as an attachment, but I can't upload them to Facebook.

    It was fine yesterday and I can't work on why it does not work today - nothing has changed on my end - everyone knows about the same problem and nobody knows how to fix?

    Please try again after updating services. Services may be updated to Edit-> preferences-> services Adobe partners.

  • where can I get help with Windows Live Photo Gallery?

    If I organize my photos with WLPG they will remain in place even in the Windows Photo Gallery?

    Try the following links:

    Windows Live Photo Gallery
    http://windowslivehelp.com/product.aspx?ProductID=20

    Windows Live Photo Gallery Solutions - organize Photos and videos
    http://windowslivehelp.com/solutions.aspx?CategoryID=a2372d99-55c5-47C2-92D3-41e6134c82d5

  • Help with df1010 digital photo frame.

    I was able to load some photos of the practice in the framework and it work all ok. When I tried to remove them, there was a power failure.

    When the power came back I found the photos left there, but the screen says they are a format that is not supported. I tried again to remove them, but the framework just hangs up.

    I tried to reset to factory setting, but that no longer works.

    Is there some sort of reset?

    It is fixed. Thanks for all the help everyone...

  • Need help with e sending photos

    I need a password to send photos by e-mail.  Can you send or re send me one?

    Hello Bert and welcome to the forums.

    This is not a question of Photoshop, but a problem of e-mail. However, if you give us a more detailed explanation of how you feel, we can help if it is in fact a matter of Photoshop.

  • Unable to transfer photos from phone to computer

    original title; can not download my pictures from my phone have connected usb do not always appear no clue y pics

    tryin 2 upload pictures from my Galaxy samsung desktop phone

    Hi Darrylwilson,

    You see pictures on the phone when it is connected to the computer?

    I suggest you try the steps from the following links:

    How to transfer media to your Android phone
    http://www.Samsung.com/us/article/how-to-transfer-media-to-your-Android-phone

    At & T phones: how to transfer photos or videos from my SGH-i897 (Captivate) phone and my computer?
    http://www.Samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00003357&fm_seq=3525

  • Upload Smartphones Photo blackBerry to the computer

    I have a Blackberry "BOLD", a "handmedown" of my son. Recently took some pictures and I would like to download it to my computer, where I put all my photos. Do I need a particular 'cable' (USB type?) that will link phone/camera to the computer?

    Hello and welcome to the community!

    Not only do you need a suitable cable (one initially supplied with him would be preferable, otherwise, you will need to go shopping for a cable that fits on the USB port of your computer and the data on the device port, preferably a true native BB OEM cable rather than some substitute), but you will need the appropriate software installed on your PC (so that it can recognize and communicate with the device). Reference:

    And, for a tutorial, reference (but do not use the links... that post are especially valid for the basic concepts, but old to the real methods):

    Good luck and let us know!

  • Problems with disabling iCloud photos

    You want to stop using iCloud Photos. When you delete a photo or a video of one of my devices, the iPhone 6 & iPad air, they get removed also from my Mac. I want to go back and to import my photos of devices directly on my Mac and then remove it from my devices when I chose to. Pictures of exploited iCloud I understood it when I turned on iCloud photo. In addition, when you view Photos in my iCloud account, it has updated to a less 4 days with never increase the number of Photos in iCloud. This might just because I may not understand how worked iCloud. It all started when my iPhone was almost full. I've updated my iCloud to 1 TB storage and have 800 GB unused. I want to back all my photos on my Mac and close to iCloud.

    iMac (27-1 inch, mid 2010) 2.93 GHz Intel Core i7, 16 GB memory of 1067 MHz DDR3, 2 TB of SATA drive, OS X El Capitan, 10.11.3 Version

    See the following for instructions on how to disable iCloud photo library: get help with your iCloud photo library - Apple Support

    The following have the instructions on how to move to the level of the 5 GB of storage iCloud free: upgrades of storage iCloud and downgrades - Apple Support

Maybe you are looking for