Moving images from N7610 to N95

Apologies if this is covered elsewhere on this board, but I have 30 or so images on my 7610 I'd like to transfer to my new N95. The memory cards don't appear to be the same. Any tips on how I can do this?
Thanks
Julie

Via BT, Infrared.
Also those pics can be saved to PC Suit and can be transferred to N95.

Similar Messages

  • Moving images from one library to another; or how to have 2 libraries open at the same time in Aperture 2

    This may be something easy but for some reason I am having a hard time figuring this out. Basically this is the situation: I have a library on my MBP hd that I import pictures to when I am not hooked up to my external hd for the time being. The main library is of course on the external 2tb drive. How do I have 2 libraries open so that I can essentially drag and drop the pictures from one library to another? It would basically be like moving files from one project to another. Thanks for any help!

    Always keep a backup of your original images, before you delete them. I make a backup right form the card, before I even import them to Aperture.
    How are your images stored right now? Are the referenced or managed? On your big volume I'd consolidate the newly imported images, to be sure they are really inside the Aperture library before I delete any images outside the library.
    but they have the little yellow triangle caution symbol on them and I can see them but not really edit them
    That is a very typical problem, when you imported your images as referenced images then somehow delete or move the original master image files, that are stored outside the Aperture library.
    Do you still have the original masters of the images with the yellow triangle that you cannot edit? In Aperture 3 you can point Aperture to the location of the master image file "File >Locate referenced image" - probably Aperture 2 has a similar command to let you reconnect your masters, if you still have them. Look into the manual.

  • Moving Image from one Review to Another?

    I attempted to upload an image (open in Photoshop) to a specific review. However, I could not see the desired review in the Photoshop CS Review panel. Out of frustration - after attempting to "find" the desired review for several minutes - I uploaded the image to another review and then went online, using Safari, to Acrobat.com.
    There is no visible means of moving an image from one review to another. There is a way of dragging one review (with all sub-images) to another location. But I can't see a way of moving a sub-image from one review to another review.
    IF there is some "magic" that someone knows I would sure appreciate some education.

    This works quite well for a single image review. I've moved them from one workspace to another. The issue is when a review has multiple images and you want to take only one of them from that review and move it to another review in another workspace; I can't seem to get that to work at all.
    When I open a review and navigate to the desired image, then click in the lower left corner and select a new workspace to move the image to, it moves the entire review - not the single image - to the new workspace.
    I guess I could delete the "part" from the workspace it currently exists in and then create it as a stand alone review, but then I won't be able to imbed it into another review as I want to do.
    The source frustration here is that I can't get CS Review in CSPS5 to navigate to the desired workspace/review. I get "ALL REVIEWS" displayed but not the workspaces... Any ideas on how to display workspaces instead of reviews?

  • Moving images from external HD to internal - lost metadata (mac)

    got myself in a bit of a pickle here...
    got a new imac - and upgraded from LR2 to LR4
    all images are stored on an external hard drive - i *want* all of my pictures on the internal HD
    so i copied the pictures folder to the internal HD - opened LR4, updated the catalog file (moved it from the extHD - pointed it to the new location on the internalHD)
    apparently the lrcat file didn't get informed though - i had blank spaces in grid-view where there used to be pictures
    so.. jiggered around with it until it found all the pictures (they appeared in grid view) - except, now there were alternating picture/blank-spaces
    i discovered a way to "find" all the missing pictures - then "removed" them
    unfortunately, when we checked our work, we found that the meta-data didn't come with the pictures that remained - so, no stars, tags, flags, etc.......
    good thing is.. i still have the original files and LRCAT file on the extHD
    can somebody help me right this ship??
    (i think i want to just uninstall LR4 and start all over)

    Obviously you can just use the Finder to copy the external iPhoto Library to your new Mac Pro. You should change the name of it first so you don't get the two mixed up or accidentally replace one with the other.
    If you want the old and new photos in a single library you have a couple of choices. The free choice would be to import the "several images" from the MacPro's current library into the external library.
    An easy way to merge two libraries is to use iPhoto Library Manager. It's available here: http://www.fatcatsoftware.com/iplm/
    It has some functions in the free download version but more advanced functions require the US$19.95 shareware fee.

  • Moving images from 1  catalog into another/book

    I am creating a photo album via LightRoom and Blurb.  I have ~ 250 of my images available to me in this catalog.  I am trying to move an additional 50 images from a different catalog (or Quick Collection) into the book catalog.  Can someone please tell me how?

    I may be misusing my terminology.  To hopefully better summarize:  I have ~300 images from a collection (called Myanmar slideshow).  I created a book from this collection.  Only 240 of the images transferred (I understand due to limits by Blurb to 20-240 images).  I then manipulated the book pages, so there were multiple images per page.  This reduced the number of pages to ~95.  That would theoretically allow me 145 more pages in the end.  So I have 55 images from the original collection (slideshow) that I would now like to add to the book (this book is now a collection?).  I have tried click and drag, import from another catalog.  If any one knows how to move it over, I would greatly appreciate it.  If blurb would allow me to create a second album and then they combine them, that would work for me, but I can't seem to communicate with a human on that end.  Thanks in advance for your advice.

  • Facing difficulties in dragdrop event handler while moving images from tilelist to canvas

    1) my tile list contains images which are coming from
    database.
    2) i have to drag and drop those images from tile list to
    canvas.
    3) In tile list we don't have to write mouseMove event
    handler where we can define dragInitiator . (if dragEnabled = true)
    4) my dragEnter and dragOver is working properly . Problem is
    in dragDrop .
    5 ) how can i collect there dragged image
    (event.draggedsource.....what must be write)
    ERROR : Cannot access a property or method of a null object
    reference

    import java.util.Timer;
    import java.util.TimerTask;
    public class Test {
        public static void main (String[] args) {
            final Timer timer = new Timer ();
            System.out.println ("I'm gonna do something in 5 seconds.");
            timer.schedule (new TimerTask () {
                public void run () {
                    System.out.println ("Time's up !");
                    timer.cancel ();
            }, 5000);
    }if you want to display the time left it's better to make your own Thread that updates a "timeleft variable:
    {code}
    public class Test {
    //set the time Left to 3 mins.
    private long secondsLeft = 3 * 60;
    public Test () {
    new Thread (new Runnable () {
    public void run () {
    try {
    while (secondsLeft > 0) {
    //Let's update the timer every second.
    Thread.sleep (1000);
    secondsLeft = secondsLeft - 1;
    System.out.println ("Time left: " + (secondsLeft / 60) + ":" + (secondsLeft % 60));
    System.out.println ("Grats !");
    } catch (InterruptedException e) {}
    }).start ();
    public static void main (String[] args) {
    new Test ();
    {code}

  • Moving images from LR 4 to Photoshop CS 6

    I cannot move my images from lightroom 4 to photoshop cs5.Iam using a Nikon D600.Other images shot on other camers I can move.

    The D600 is supported from Lightroom 4.3 and ACR 7.3 (which requires PS CS6). The ACR version in CS5 (the latest being 6.7) doesn't support it.
    You can get around that using the free DNG converter, which will convert the files to the universal DNG format, readable by any ACR/Lr version. Other than that, see >this< thread.

  • Moving image from one project to another

    Hi all. I'm sorry if this is simple to do, but I can't figure it out. I have recently purchased Aperture 3 and am trying to figure out how to move an image from one project to another. I had several photos on my camera, and imported them this morning into it's own project. Now, I would like to take some of those photos and put them in my "family" project, and some into my "dogs" project, etc. When I open up the new project, I can't find where I can move them to another project. I have to assume this is doable, but I can't figure it out.
    Thanks in advance.
    Dale.

    Sorry to be a complete idiot, but here's my issue. When I open the original project, and then find the image that I want to move, I am unable to see any other projects (in browser view), so I have nowhere to drag them to. I hope that makes sense and you can help.
    Thanks again.
    Dale.

  • Moving images from project to project

    Every time I try to MOVE an image from one project to another project, it COPIES it instead. That's not what the manual says should happen. Am I doing something wrong?
    Thanks, Fran

    Welcome to the list. Have you read the [Help & Terms of Use|http://discussions.apple.com/help.jspa] section yet?
    The only way you would be coping from project to project is if you were holding down the option key while you dragged the image.
    If that's not the case then it really sounds like either the source or destination (or both) are other than projects. Remember projects are the yellow file box looking things.
    regards

  • Moving images from ip4 albums to ip5c ? can only seem to move images in the camera roll

    I,m trying to move images from an iphone 4 ( camera roll and other albums) to a new iphone 5c.
    Cannot seem to move the album images over....
    Is there an easy way to do this ?
    regards

    Photos NOT in your camera roll got onto your iPhone by synching from your computer.  You need to synch those very same photos from your computer to your new phone.  You don't move them from one phone to another.

  • Moving images from Lightroom to Photoshop 2014 CC – Color Problems?

    For some reason, whenever I select "Edit in Photoshop 2014 CC", the image color is not only extremely different from what's displayed in Lightroom, it's dark and dull. However, if I export the image as a .jpg and then import it into Photoshop 2014 CC the color looks the same as what's displayed in Lightroom and this is with NO color correction.
    Why is this happening and how should I be moving files between the two apps? BTW, I shot the images with a Canon T3i that saves the image as a CR2 and JPG.
    Thanks!

    I'm running Lightroom and Photoshop CS3. "Edit image in Photoshop CS3" works fine for me. I'm on an iMac and had Lightroom installed first, only thing I noticed is it takes PS a little longer to open up.

  • Moving images from library to library WITH Faces information

    Ok.
    iPhoto 09/faces
    Can someone out there tell me, first off, is it even possible to move photos from one library to another library WITH all the Faces effort I've put in on those photos (say from my default library on my hard drive to another person's library on an external hard drive)?
    That way they don't have to be rescanned and then I have to go through and correct the crappy scanning effort that the program did all over again.
    I tried exporting/importing, straight copy, etc. with no dice.
    I don't want to keep having to re-correct all the faces in images I transfer between libraries.
    "Help me Obi-Wan Kenobi....You're my only hope!"

    For folks out there here is the results of Terrence's suggestion (which was a good one BTW, I don't want to dump on him - it was good thinking on his part! Thanks Terrence).
    iPhoto Lib Manager still ***** (on my system anyway - iMac OSX 10.5.6).
    I installed the thing and tried moving 1000 photos with faces info organized nicely - no dice - it crapped out.
    First make sure all the permissions are set properly and the library mounts automatically (under the options). Then it will at least ATTEMPT to copy everything (also edit prefs to reflect all the metadata that goes with the photos like faces info, dates, desc. etc).
    But while thing appear to go well, it craps out at the end leaving you stymied. It re-scans the imported images and the faces data does not come through in the end despite it's trying to do so.
    I tried it with 80 photos, just to make sure I wasn't trying to fit 20lbs of manure into a 10lb bag. Same story with the smaller transfer
    If I go any smaller, I may as well have used the public version (free) which limits you to 20 at a time.
    So bottom line - according to my experience - if you and someone else have the same photos in your separate libraries and want to share the effort one of you puts into organizing faces info - you're hooped/screwed/pooched!
    Nada - diddly - bupkiss!
    VERY DISAPPOINTING! Both the iPhoto 09 AND the failed (but valiant) attempt by iPhoto Lib Man.
    Should've stuck with iLife 08 and lived with it...sigh.

  • Moving images from computer hard drive to external hard drive

    Hi all,
    Currently trying aperture2. I'd like to move my photo library from my computer's hard drive to an external hard drive. Not quite sure how to do it and would rather not end up deleting everything. I'm sure its pretty straightforward but thought I would ask first. Thanks.

    both of those will do it ... it is just a matter of which method ...
    being that you are on a laptop (?) i would suggest the referenced route ... only because you can create image previews and travel around with those, and not have to lug the external along, yet still be able to "see" the images and work with metadata - just not adjustments ...
    your library would remain on your laptop's hdd, but the actual image files would stay on the ext ...
    check these articles for info:
    http://www.bagelturf.com/aparticles/ref/index.php

  • Moving images from iPhoto 11 to Photoshop Elements Organizer

    I understand that iPhoto 11 kept all images within the iPhoto Library.  In order to move them into the Adobe Photoshop Elements Organizer, they must be moved to the hard drive of the Mac and then imported into Elements 12 Organizer.
    Is there any way to do this in one step?
    Mary Lou

    If you want to keep the photos organized by the Events they are currently in use this export setup:
    If you want to keep the keywords, titles and descriptions added in iPhoto change Kind to JPEG and set JPEG Quality to Maximum and check both checkboxes.
    OT

  • Moving images from Photoshop to Indesign (CS4)

    Hi,
    I've designed a badge in Photoshop and want to add the graphic to my indesign project. But when I import the graphic it gets a white background by default when I want it to be transparent. I know there is a way but I've forgot!
    Thanks
    James

    What file format have you saved it as?
    PSD or TIF can have transparent backgrounds.
    When you save as TIF make sure you check the box for Preserve Transparency.
    If you have a white background in your image already, but have drawn a clipping path, then when you import the TIF file check the Show Options
    You'll see this when you go to File>Place (show options is in the bottom left hand corner of the dialog box).
    You should have the option to invoke the photoshop clipping path there.
    If you have already placed your image with a photoshop clipping path then you can use the Object>Clipping Path>Options and select the path from the drop down menu.

Maybe you are looking for

  • Creation of a button for rollback

    Greetings Experts from around the world, I am having like a lot of trouble in creating a rollback button. I have created a small application where i need to enter values for a set of elements at an hourly time interval. What is happening basically is

  • Ipod Classic 80 gb

    When the battery finally dies on my favorite iPod, will it be replacable? thanks if you know

  • I have no audio when using chrome

    I have no audio when using chrome. I have audio when using Internet explorer and when playing from my pc. I have tried uninstalling chrome and flash player then reinstalling them. have tried FAQ on chromes site and Adobe's site. did not work.

  • Problem using in download function

    Dear Experts, I am using download function to download values from application server to desktop. After downloading the output is like the foollowing. 0    temp     30    bar(kg) But now the user requirement is I have to print it like the following.

  • Tranferring photos from iphoto to external hard drive

    Hi there, I'm a bit of a luddite, and am trying to back up all my photos on an external hard drive. I've dragged the library over, but none of the individual photos appear when you click on the folders (the ones I've created and named). You can acces