Need help, duplicate "false" images in my Aperture library

[img]http://www.pbase.com/image/120194191/original.jpg[/img]
http://www.pbase.com/image/120194191/original.jpg
*The blank spots you see are just me masking photos that may not be work safe so disregard those.
The issue I am having is the blue circled stacks and the 2 green circles stacks, if I select (single click) the blue one the green also become selected, if I try an select either of the green ones the blue one gets selected, if I move the blue on around the page they all move but in random places usually a couple rows apart.
Everything was fine with these images as I tested and practiced with Aperture for the fist week or so.
Last night I referenced my 2009 motor sports season to its own project (54,000 images) and it imported the locations and was building previews fine.
So as its building the previews for the motor sports project I decided to combine 2 other projects into one... that is the one you see here with the strange triple image copies.
The images have only been imported once and open, export and edit fine.. I just cant seem to get rid of the fake or false copies in the green circles.... any ideas?

I do need to come with system, all this is testing and getting familiar with Aperture prior to making to a permanent part of my work flow.... I have everything backed up at work and even a bootable copy of this home system ready to go if I cant repair the damage I have done (I will only loose a few hours of edits/version I like better with Aperture vs. my old way...I hope I dont, but not the end of the world )
The 50,000 motor sports images are JPG's and are referenced to an external firewire 800 drive... 2009 track work is the project the main folder BeaveRun 2009 with 23 separate event folders in that
(screen shot jpg)
http://www.pbase.com/image/120197387/original.jpg
Everything else is imported and stored in my library and was done a week prior to my issue and has worked great.
The triple strange stack copies are not "real" if I click to highlight one they all light up as selected, but the readout at the very bottom of the Aperture page correctly displays "1 selected-166 images displayed" even though you can see all 3 are highlighted with the white outline .
(screen shot jpg)
http://www.pbase.com/image/120194191/original.jpg
several of my shots now have false copies (cant be selected or moved individually, they just float around randomly somewhere near the real ones) its just the one project I moved images into got messed up my be because Aperture was still rendering preview of my 2009 Track project? Anyway because they are not real and cant be selected individually I cant delete them or anything without also affecting the real ones

Similar Messages

  • How do you move images in one aperture library to a new aperture library

    how do you move images in one aperture library to a new aperture?

    Hello, Patricia,
    Do you want to create a new Aperture Library with the images you select or to import them into another existing library?
    To create a new library based on selected images use the main Aperture menu:
         File -> Export -> Project (Folder, album) as New Library.
    To import a part of an Aperture Library into another Library, export the Aperture items as new library, then import that library into the destination library. That way you will ensure, that all versions and metadata are exported.
    Regards
    Léonie

  • Need help [JS]: select images/captions in InD, switch to Bridge and write to XMP

    I've got a javascript for CS3/Tiger that I'm writing that eventually will let a user select an image and a caption in InDesign, then tells bridge to write the caption data into the image metadata. I need help - the script works in pieces, but not when put together.
    It's built as an indesign script, then follows the procedure to create a script object to send to bridge. When it runs, the indesign portion works fine, but nothing happens in bridge.
    The script is below, with comments.
    Can someone help!? Thanks.
    // This is the InDesign portion of the script, which was tested separately and is working fine. Right now, for testing purposes, the data from this portion isn't even used by the later Bridge portion but once I get the bridge part together, it will use those variables.
    #target "indesign-5.0"
    var myObjectList = new Array;
    //Script does nothing if no documents are open or if no objects are selected.
    if(app.documents.length != 0){
    if(app.selection.length != 0){
    for(myCounter = 0; myCounter < app.selection.length; myCounter ++){
    switch(app.selection[myCounter].constructor.name){
    case "TextFrame":
    var myCaption = app.selection[myCounter].contents;
    $.writeln(myCaption);
    break;
    default:
    var myLink = app.selection[myCounter].graphics[0].itemLink.filePath;
    $.writeln(myLink);
    // here's where I create the string of the script to send to Bridge.
    // the script itself is almost completely a lifted from the SnpModifyMetadta sample from the Bridge sdk
    // it basically finds a certain image file and modifies the description metatata. i hardcoded the caption text and image path just for testing- eventually i would like it to use the variables from indesign.
    // this script works fine as-is when run in the original Bridge scripting context.
    // the method here of concatenating and sending the myScript string works fine when i use a different (smaller) script. so i can't tell why it's not working!?
    var myScript = "function SnpModifyMetadata()";
    myScript += "{";
    myScript += " this.requiredContext = \"Needs to run in Bridge, \nwith a selection of a file, \nideally with some metadata\";";
    myScript += "}";
    myScript += "SnpModifyMetadata.prototype.run = function()";
    myScript += "{";
    myScript += " if(!this.canRun())";
    myScript += " {";
    myScript += " return false;";
    myScript += " }";
    myScript += " if( xmpLib == undefined )";
    myScript += " {";
    myScript += " if( Folder.fs == \"Windows\" )";
    myScript += " {";
    myScript += " var pathToLib = Folder.startup.fsName + \"/AdobeXMPScript.dll\";";
    myScript += " }";
    myScript += " else";
    myScript += " {";
    myScript += " var pathToLib = Folder.startup.fsName + \"/AdobeXMPScript.framework\";";
    myScript += " }";
    myScript += " var libfile = new File( pathToLib );";
    myScript += " var xmpLib = new ExternalObject(\"lib:\" + pathToLib );";
    myScript += " }";
    myScript += " $.writeln(\"About to run SnpModifyXML\");";
    myScript += " var thumb = new Thumbnail(Folder(\"/Macintosh HD/Users/hearstuser/Desktop/BridgeScriptImages/orion_stack copy 6.psd\"));";
    myScript += " if(thumb.hasMetadata)";
    myScript += " {";
    myScript += " var md = thumb.synchronousMetadata;";
    myScript += " var xmp = new XMPMeta(md.serialize());";
    myScript += " $.writeln(\"SnpModifyXML: About to modify XMP data for \" + thumb.name);";
    myScript += " $.writeln(\"XMP packet before modifications:\");";
    myScript += " $.writeln(\"-------------------------------------------------\");";
    myScript += " $.writeln(xmp.dumpObject());";
    myScript += " xmp.deleteProperty(XMPConst.NS_XMP, \"Description\");";
    myScript += " xmp.setProperty(XMPConst.NS_XMP, \"Description\", \"hoThereHeyThere\");";
    myScript += " var d = new XMPDateTime(new Date());";
    myScript += " d.convertToLocalTime();";
    myScript += " xmp.setProperty(XMPConst.NS_XMP, \"ModifyDate\", d, XMPConst.XMPDATE);";
    myScript += " $.writeln(\"XMP packet af

    Recently I received an e-mail from a user asking me to remake the script I had posted here a while ago.
    I rechecked my previous post and found a couple of serious mistakes. So I revised it according to what he asked. Each page in his InDesign document contains one image and one text frame with description.
    At start the script checks the selection. If nothing is selected it processes all pages in the document. In case two objects are selected – it checks whether one of them text frame and the other a rectangle and if the rectangle contains an image, then it reads the contents of the text frame, replacing hard and soft returns with spaces and writes this text to the corresponding image’s description field.
    In the end, it updates all links and saves the file.
    The script works both on Mac and PC, assuming that CS3 installed in the default location so long as it depends on libraries:
    /C/Program Files/Adobe/Adobe Bridge CS3/AdobeXMPScript.dll (on PC)
    /Applications/Adobe Bridge CS3/Bridge CS3.app/Contents/MacOS/AdobeXMPScript.framework (on MAC)
    So, if necessary, correct these lines.
    Here is my script in case somebody is interested:
    #target indesign
    var myDoc = app.activeDocument;
    var mySelection = app.selection;
    if (mySelection.length == 0) {
        ProcessPages();
    else if (mySelection.length == 1) {
        alert("One image and one textframe should be selected.");
        exit();   
    else if (mySelection.length == 2) {
        try {
            if (mySelection[0].constructor.name == "TextFrame" && mySelection[1].images.length == 1) {
                var myTextFrame = mySelection[0];
                var myImage = mySelection[1].images[0];
                var myCaption = ReplaceReturnWithSpace(myTextFrame.contents);
                var myPath = new File(myImage.itemLink.filePath).absoluteURI;
            else if (mySelection[1].constructor.name == "TextFrame" && mySelection[0].images.length == 1) {
                var myTextFrame = mySelection[1];
                var myImage = mySelection[0].images[0];
                var myCaption = ReplaceReturnWithSpace(myTextFrame.contents);
                var myPath = new File(myImage.itemLink.filePath).absoluteURI;
        catch(e) {
            alert("Something wrong with your selection.\nError: " + e.message);
            exit();
        CreateBridgeTalkMessage(myCaption, myPath);
    else if (mySelection.length > 2) {
        alert("One image and one textframe should be selected.");
        exit();
    UpdateAllOutdatedLinks();
    myDoc.save();
    alert("All done.");
    //+++++++++++++++++++ FUNCTIONS ++++++++++++++++++++++
    function CreateBridgeTalkMessage(myCaption, myPath) {
        var bt = new BridgeTalk();
        bt.target = "bridge";
        var myScript = WriteCaption.toString() + '\r';
        myScript += 'WriteCaption(\"' + myCaption + '\", \"' + myPath + '\");';
        bt.body = myScript;
        bt.send();
    function WriteCaption(myCaption, myPath) {
        if( xmpLib == undefined ) {
            if( Folder.fs == "Windows") {
                var pathToLib = "/C/Program Files/Adobe/Adobe Bridge CS3/AdobeXMPScript.dll";
            else {
                var pathToLib = "/Applications/Adobe Bridge CS3/Bridge CS3.app/Contents/MacOS/AdobeXMPScript.framework";
            var libfile = new File( pathToLib );
            var xmpLib = new ExternalObject("lib:" + pathToLib );
        var thumb = new Thumbnail (File (myPath));
        if (thumb.hasMetadata) {
            var md = thumb.synchronousMetadata;
            var xmp = new XMPMeta(md.serialize());
            xmp.deleteProperty(XMPConst.NS_XMP, "Description");
            xmp.setProperty(XMPConst.NS_XMP, "Description", myCaption);
            var updatedPacket = xmp.serialize(XMPConst.SERIALIZE_OMIT_PACKET_WRAPPER | XMPConst.SERIALIZE_USE_COMPACT_FORMAT);
            thumb.metadata = new Metadata(updatedPacket);
    function ProcessPages() {
        var myPages = myDoc.pages;
        for (i = 0; i < myPages.length; i++) {
            var myPage = myPages[i];
            if (myPage.textFrames.length == 1 && myPage.rectangles.length == 1) {
                if (myPage.rectangles[0].graphics.length == 1) {
                var a = myPage.rectangles[0];
                    var myImage = myPage.rectangles[0].graphics[0];
                    var myPath = new File(myImage.itemLink.filePath).absoluteURI;
                    var myTextFrame = myPage.textFrames[0];
                    var myCaption = ReplaceReturnWithSpace(myTextFrame.contents);
                    CreateBridgeTalkMessage(myCaption, myPath);
    function ReplaceReturnWithSpace(myString) {
        myString = myString.replace( /\n/g , " " );
        myString = myString.replace( /\r/g , " " );
        return myString;
    function UpdateAllOutdatedLinks() {
        for(var myCounter = myDoc.links.length-1; myCounter >= 0; myCounter--){
            var myLink = myDoc.links[myCounter];
            if (myLink.status == LinkStatus.linkOutOfDate){
                myLink.update();
    If somebody interested in developing this script further, do not hesitate to post here your feedback.
    Kasyan

  • Need help with Applet: Images

    DUKESTARS HERE, YOU KNOW YOU WANNA
    Hi,
    I'm designing an applet for some extra credit and I need help.
    This game that i have designed is called "Digit Place Game", but there is no need for me to explain the rules.
    The problem is with images.
    When I start the game using 'appletviewer', it goes to the main menu:
    http://img243.imageshack.us/img243/946/menuhy0.png
    Which is all good.
    But I decided that when you hover your cursor over one of the options such as: Two-Digits or Three-Digits, that the words that are hovered on turn green.
    http://img131.imageshack.us/img131/6231/select1ch3.png
    So i use the mouseMoved(MouseEvent e) from awt.event;
    The problem is that when i move the mouse around the applet has thick line blotches of gray/silver demonstrated below (note: these are not exact because my print screen doesn't take a picture of the blotches)
    http://img395.imageshack.us/img395/4974/annoyingmt1.png
    It also lags a little bit.
    I have 4 images in my image folder that's in the folder of the source code
    The first one has all text blue. The second one has the first option, Two-Digits green but rest blue. The third one has the second option, Three-Digits green but rest blue, etc.
    this is my code
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.event.*;
    import java.awt.*;
    public class DigitPlaceGame extends Applet implements MouseListener, MouseMotionListener {
         public boolean load = false;
         public boolean showStartUp = false;
         public boolean[] hoverButton = new boolean[3];
         Image load1;
         Image showStartUp1;
         Image showStartUp2;
         Image showStartUp3;
         Image showStartUp4;
         public void init() {
              load = true;
              this.resize(501, 501);
                   try {
                        load1 = getImage(getCodeBase(), "images/load1.gif");
                        repaint();
                   } catch (Exception e) {}
              load();
         public void start() {
         public void stop() {
         public void destroy() {
         public void paint(Graphics g) {
              if(load == true) {
                   g.drawImage(load1, 0, 0, null, this);
              } else if(showStartUp == true) {
                   if(hoverButton[0] == true) {
                        g.drawImage(showStartUp2, 0, 0, null, this);
                   } else if(hoverButton[1] == true) {
                        g.drawImage(showStartUp3, 0, 0, null, this);
                   } else if(hoverButton[2] == true) {
                        g.drawImage(showStartUp4, 0, 0, null, this);
                   } else {
                        g.drawImage(showStartUp1, 0, 0, null, this);
                        for(int i = 0; i < 3; i++) {
                             hoverButton[i] = false;
         public void load() {
              addMouseListener(this);
              addMouseMotionListener(this);
              showStartUp1 = getImage(getCodeBase(), "images/showStartUp1.gif");
              showStartUp2 = getImage(getCodeBase(), "images/showStartUp2.gif");
              showStartUp3 = getImage(getCodeBase(), "images/showStartUp3.gif");
              showStartUp4 = getImage(getCodeBase(), "images/showStartUp4.gif");
              showStartUp();
         public void showStartUp() {
              load = false;
              showStartUp = true;
         public void mouseClicked(MouseEvent e) {
              System.out.println("test");
         public void mouseMoved(MouseEvent e) {
              int x = e.getX();
              int y = e.getY();
              if(x >= 175 && x <= 330 && y >= 200 && y <= 235) {
                   hoverButton[0] = true;
                   repaint();
              } else if(x >= 175 && x <= 330 && y >= 250 && y <= 280) {
                   hoverButton[1] = true;
                   repaint();
              } else if(x >= 175 && x <= 330 && y >= 305 && y <= 335) {
                   hoverButton[2] = true;
                   repaint();
              } else {
                        for(int i = 0; i < 3; i++) {
                             hoverButton[i] = false;
                        repaint();
         public void mouseEntered(MouseEvent e) {
         public void mouseExited(MouseEvent e) {
         public void mousePressed(MouseEvent e) {
         public void mouseReleased(MouseEvent e) {
         public void mouseDragged(MouseEvent e) {
    }plox help me ploz, i need the extra credit for an A
    can you help me demolish the lag and stop the screen from flickering? thanks!!!!!
    BTW THIS IS EXTRA CREDIT NOT HOMework
    DUKESTARS HERE, YOU KNOW YOU WANNA
    Edited by: snoy on Nov 7, 2008 10:51 PM
    Edited by: snoy on Nov 7, 2008 10:53 PM

    Oh yes, I knew there could be some problem.......
    Now try this:
    boolean a,b,c;
    if((a=(x >= 175 && x <= 330 && y >= 200 && y <= 235)) && !hoverButton[0]) {
                   hoverButton[0] = true;
                   repaint();
              } else if((b=(x >= 175 && x <= 330 && y >= 250 && y <= 280)) && !hoverButton[1]) {
                   hoverButton[1] = true;
                   repaint();
              } else if((c=(x >= 175 && x <= 330 && y >= 305 && y <= 335)) && !hoverButton[2]) {
                   hoverButton[2] = true;
                   repaint();
              } else if ((!a && !b && !c)&&(hoverButton[0] || hoverButton[1] || hoverButton[2]){
                        for(int i = 0; i < 3; i++) {
                             hoverButton[i] = false;
                        repaint();
              }hope it works........
    Edited by: T.B.M on Nov 8, 2008 10:41 PM

  • I need help dividing an image into two equal parts in Adobe Illustrator CC--ASAP!!!

    I need help dividing a single, already created image into 2 equal parts...Am getting nowhere so far

    Hi Willi, thanks so much for responding! Below is the image I need to divide in half. The left half where it says "Click here for the definition" links to a landing page where people can read the definition of the Hebrew Word. The right half links to an audio recording of the Hebrew word being spoken aloud. I am trying to figure out how to use the scissors or knife tool in Adobe Illustrator and am having no luck. Plus I believe there's a way to include URLs on each separated part, but I can't get past figuring out how to cut it. My background is not graphic design

  • I need help to make Images react to mouseclick..please read.

    So I want two things here...
    1. When I press the "start" pic I want the "SpillMotor" class to start running, that is where the main game is.
    2. When I press the "instruksjoner" pic I want a little box to pop up with some info I have written in a string...
    Any help?
    Ty in advance..
    * Her er et alternativ til Menyclassen. Ikke helt ferdig, men jeg tror dere fatter poenget.
    * Mvh Bear
         package spill;
         import java.awt.*;
         import java.awt.event.*;
         import java.awt.image.*;
         import java.net.URL;
         import javax.swing.*;
         public class AltMeny extends JPanel implements MouseListener, Runnable {
              public boolean running;
              private int bredde = 600;
              private int hoyde = 400;
              private int startx1=80;
              private int startx2=502;
              private int starty1=155;
              private int starty2=237;
              private int instruksjonx1=141;
              private int instruksjonx2=440;
              private int instruksjony1=259;
              private int instruksjony2=289;
              private int avsluttx1=195;
              private int avsluttx2=400;
              private int avslutty1=294;
              private int avslutty2=324;
              private Thread oppdaterLoop;
              private boolean mouseOnStart = false;
              private boolean mouseOnInstruksjon = false;
              private boolean mouseOnAvslutt = false;
              Image bakgrunn = hentBilde("bakgrunn.jpg");
              Image start = hentBilde("start.jpg");
              Image instruksjon = hentBilde("instruksjon.jpg");
              Image avslutt = hentBilde("avslutt.jpg");
              Image startMarked = hentBilde("start_marked.jpg");
              Image instruksjonMarked = hentBilde("instruksjon_marked.jpg");
              Image avsluttMarked = hentBilde("avslutt_marked.jpg");
              private JFrame frame;
              public void paint(Graphics g) {
                   //tegner f�rst bakgrunn
                 g.drawImage(bakgrunn,  0, 0, this);
                 //sjekker om musa er innenfor startknappen
                 if (getMousePosition() != null && getMousePosition().x  > startx1 && getMousePosition().x < startx2 && getMousePosition().y > starty1 && getMousePosition().y < starty2) {
                      mouseOnStart = true;
                      mouseOnInstruksjon = false;
                      mouseOnAvslutt = false;
               //sjekker om musa er innenfor instruksjonknappen
                 else if (getMousePosition() != null && getMousePosition().x  > instruksjonx1 && getMousePosition().x < instruksjonx2 && getMousePosition().y > instruksjony1 && getMousePosition().y < instruksjony2) {
                      mouseOnStart = false;
                      mouseOnInstruksjon = true;
                      mouseOnAvslutt = false;
               //sjekker om musa er innenfor avsluttknappen            
                 else if (getMousePosition() != null && getMousePosition().x  > avsluttx1 && getMousePosition().x < avsluttx2 && getMousePosition().y > avslutty1 && getMousePosition().y < avslutty2) {
                      mouseOnStart = false;
                      mouseOnInstruksjon = false;
                      mouseOnAvslutt = true;
                 //avmerker knappene
                 else {
                      mouseOnStart = false;
                      mouseOnInstruksjon = false;
                      mouseOnAvslutt = false;
                 //tegner lysere versjon av knappen hvis musa er over
                 if (mouseOnStart) {g.drawImage(startMarked,  79, 155, this);}
                 else {g.drawImage(start,  79, 155, this);}
                 //tegner lysere versjon av knappen hvis musa er over
                 if (mouseOnInstruksjon) {g.drawImage(instruksjonMarked, 139, 259, this);}
                 else {g.drawImage(instruksjon, 141, 259, this);}
                 //tegner lysere versjon av knappen hvis musa er over
                 if (mouseOnAvslutt) {g.drawImage(avsluttMarked,  194, 294, this);}
                 else {g.drawImage(avslutt,  195, 294, this);}
              //metode for � hente bilder fra mappe
              public Image hentBilde(String filnavn)
                    Image bilde = null;
                    URL url = getClass().getResource(filnavn); // OBS! cASe-SeNSItiVT!!!
                    if ( url == null ){
                        System.err.println("Finner ikke filen '" + filnavn + "'");
                        System.exit(1);
                    bilde = Toolkit.getDefaultToolkit().getImage(url);
                    return bilde;
              //run metode for � kj�re menyen i en loop
              public void run(){
                   running=true;
                    while ( running ) {
                          repaint();
                          try {
                              oppdaterLoop.sleep(30);
                              // Tr�den sover i 30 millisekunder,
                              // vi m� dessuten fange et unntak
                              // som denne metoden kaster
                          catch ( Exception e ) {
                              e.printStackTrace();
              public void stoppLoop() {
                 running = false;
              public AltMeny(){
                   frame = new JFrame();
                   frame.getContentPane().add(this);
                   frame.setTitle("One Night at Samfundet");
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   frame.setSize(bredde, hoyde);
                   frame.setLocation(500,250);
                   frame.setVisible(true);
                   frame.setFocusable(true);
                   frame.addMouseListener(this);
                   oppdaterLoop = new Thread(this);
                   oppdaterLoop.start();
         public void mouseClicked(MouseEvent b) {
              if (b.getButton()==MouseEvent.BUTTON1 &&  mouseOnAvslutt == true) {
                   System.exit(0);
              if (b.getButton()==MouseEvent.BUTTON1 &&  mouseOnInstruksjon == true) {
              if (b.getButton()==MouseEvent.BUTTON1 &&  mouseOnStart == true) {
         @Override
         public void mouseEntered(MouseEvent e) {
         @Override
         public void mouseExited(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mousePressed(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mouseReleased(MouseEvent arg0) {
              // TODO Auto-generated method stub
         public static void main(String[] args){
                new AltMeny().setVisible(true);
         }Message was edited by:
    psl86

    In the future, Swing related questions should be posted in the Swing forum.
    Add your images to a JButton and add an ActionListener to the button.

  • Need help deleting an image field/pictures in worksheet

    I am in need of help!!! Added photos in an important .pdf document (a worksheet form that was pre-made) and I added image fields (Top box photo and small bottom box for text). I need to delete some image fields now and it won't let me. I upgraded my Adobe Reader to Acrobat XI Pro trial, still can't. If I try to edit image, it says I need to have Live Cycle designer to edit this form. Someone please help! This is my son's Eagle Scout worksheet and needs to be fixed tonight....please

    If the file was created in LiveCycle Designer then it can only be edited
    there.
    It's not clear in what way you edited it originally.

  • Need help to find image size box

    I am a novice, I need to find the image size box on illistrator but not able to so please explaine how to find it on the page.  Thanks

    You may also be talking about the "Info" window. To open it, go to Window > Info or hit command+F8. It will show you the dimensions of the bounding box containing whatever object you have selected.
    Please let us know if we can help you further.

  • I need help editing an image in Photoshop

    I need to edit this image.
    I need to reposition the fist shape a little further down remaining within the yellow circle.  Then I also need to change all blue parts to black and the yellow outline around the knuckles to white.
    How would I do this in Photoshop?

    Put a circular selection round the fist and press Ctrl+J.
    Hide the resulting new layer and fill the circle with yellow.
    Select the blue area with the magic wand and fill the selection with black.
    Select the yellow round the fist and fill the selection with white.
    Go to the fist layer, press Ctrl+T and move it down as far as you want, (Not much room there.)
    For print, save as a TIFF; for Internet use Save for Web.

  • Need Step-by-Step Instructions for Moving Aperture Library to New iMac

    I've been using Aperture on an old MacBook Pro and am totally out of memory on it (I have less than 4GB free out of 465 GB).  I'm needing to move my Aperture library over to a newly purchased iMac.
    I have already installed Aperture on the new iMac and have updated the version to 3.5.1.  Aperture on my old MacBook Pro is version 3.4.5.  Will this difference in versions be a problem as I move the library over?
    On the MacBook Pro, I use a referenced library, housing all of my masters on an external drive.  I had to do this because of insufficient memory/storage capacity. 
    I do not have any vaults. 
    While I had been backing up to an old TimeMachine, I ran into problems with it a few months back (would spin and spin and spin and never complete a backup) and stopped attempting to back up to it.  We have purchased a new TimeMachine for use with the new iMac, but have not had our AV guys out to the house to connect it to an otherwise overly complicated whole-house AV system.  So, I'm afraid TimeMachine is not the useful mechanism in transferring the library to the new computer.
    The thunderbolt connection evidently will not work with the old MacBook Pro, so this isn't the transfer mechanism either.
    Please tell me in very simple steps how to move my library over to the new computer.  Please!  I have read through the Aperture users manual and do not see this topic addressed directly, though it is vaguely mentioned within the discussion on vaults.  I have searched this community and do not find a simple enough explanation.
    Do I need to run out and get another external drive and set up a vault to do the transfer?  But, would that even work with the referenced library?  There is no way I can convert to a managed library on the MacBook Pro, as I am out of space.
    Please help!  I have tons of photo projects that I was wanting to complete for the holidays gift-giving, but I'm at a standstill until I can get up and running on the new computer.
    Many thanks for your feedback

    If you cannot connect the old mac via thunderbolt or firewire in target mode, an external drive - large enough to hold the library plus some additional free space - would really be the best option for the transfer. I would not use the network to copy a referenced library. You do not need to create a vault.
    Connect the drive to the old Mac.
    Make sure the external drive is formatted for Mac - MacOS X Extended (Journaled).
    Set the "Ignore Ownership on this volume" flag on the external drive.
    Copy the Aperture library over to the external drive by dragging it in the Finder.
    Now double-click it to open it in Aperture.
    To move all references images to the external drive select all images in Aperture in the Photos view and use the command "File > Relocate Originals" and select a folder on your external drive as the destination.
    Once the library and the referenced files are safely on your external drive, I'd run a "Repair" using the First Aid Tools: See this Manual page:  Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual
    Test the library on the new drive and check, if everything transferred safely.
    Now dismount the drive and connect it to your new mac.
    Copy the library to your new Mac by dragging it in the Finder from the drive to a folder on your new mac.
    Now double-click it to open it in Aperture. Aperture will now upgrade it to version 3.5.
    Use the command "File > Relocate Originals" to move the originals where you want them.
    Regards
    Léonie

  • Having trouble with images in old Aperture Library?

    I have and old Aperture Library that I updated.  I opened a project in that library and tried to export some photos to my desk top.  I got an error message that was a error with about 10 images.  I went back to that same project and now those images are blank with the upside down question mark? That says “Unsupported Image Format”  Any help would be much appreciated!!
    Thanks,
    Jeff Skinner

    Hello Jeff,
    I don't undersand that with iphoto? The images are so old I forgot if they were originally iphotos or aperture files.
    I saw the "iPhoto Original" keyword attached to one of the images in question. This keyword usually is set for an original master image, when you import from iPhoto.
    I cannot find anything special about these imiages???  I noticed that there is no file size for the corrupted files.
    If the image format is not supported, then probably Aperture cannot read the file size.
    Not sure if the images are managed or referenced?
    If these were imported from iPhoto, then they might have been imported as referenced, if you set the "Store Files" selector to "In their current location" on import. That would mean, that the original masters are still in your iPhoto Library, and if you edit them using iPhoto this may break the references to your masters in Aperture.
    I think I just located the original imaiges in an old hard drive!
    That is good, at least you still have a backup; but did you see the imported, unsupported images in the masters folder of your Aperture Library? It would really help to know the exact condition of the images that are problematic. Or are they not in the library? That would mean they are referenced, but then the exclamation-mark tag in the Browser is confusing - I then would expect an icon with a broken arrow.
    It did not happen until I tried to export them though?  What can I do to prevent this from happening futher?
    Then Aperture probably did not notice that something was amiss with the images, until it needed to access the master image files for export and noticed that those could not be read. As long as you do not try to export or to edit the images, the Previews are sufficient, but on export the master has to be processed.
    The master image files of the other images in the project may be problematic as well - make sure you have a working backup, before you try anything at all with other images in that project.
    Cheers
    Léonie

  • Transferring images out of Aperture library

    I recently acquired Aperture and plan to import my existing library into the Aperture library. My existing library consists of a lot of .nefs and almost as many jpgs. Once my existing library is imported I plan to let Aperture manage and backup the images in a vault, and delete my old library file structure (after waiting long enough to be confident everything is safe).
    My question: is it possible to pull an old jpg out of the Aperture library and insert it into another program without opening Aperture? For example, if I want to put an image in a greeting card, is there any way I can go into the Aperture library through the Finder to locate and transfer the image?
    Thanks!
    Steve

    Yes, but it isn't elegant.
    Right click on the Aperture Library and select "Show package contents"
    Pick the Project and again, right click and select "Show package contents"
    Then, out of the list of folders, one per image, try and figure out what image you need (or Spotlight if you know the filename).
    There again, launching Aperture and exporting the image isn't that slow after all.
    Possible to do it with Automator/Applescript as well I believe. Unsure there is a script out there but quite likely.

  • I DESPERATLY NEED HELP TRANSFERING SONGS FROM IPOD TO ITUNES LIBRARY

    hi my computer crashed downstairs and i need help moving all my songs from my ipod to my itunes library, on the other computer...will someone please help me?

    Hello Markatkis,
    Make sure your not connecting it to more than one PC. A new iPOd is set to "Auto Update" by default. With this setting all you do is plug the iPOd into the PC and iTUnes automaticly opens, loads all the songs it has listed in iTunes to the iPod, and after its done, ejects the iPOd.
    If you connect it to another PC tho with iTUnes on it you usually get a promtp that in short says "iPOd library linked to another PC, do you want to link to this one" if you click yes, it wipes the iPOd clean and loads only whats on that PC.
    Since your new to all of this a great place for you may be the "iPod 101" site. It will show you all the bacis ropes of using your iPOd, using iTUnes, and using them both together. http://www.apple.com/support/ipod101/

  • Importing referenced images into the Aperture library

    I've searched and seen related questions but not this one exactly.
    I have images that I unknowingly (new aperture user) imported as referenced files. Now I'd like to import them into the aperture library without loosing ratings, etc so that they are included in my vault. How do I do this without starting over with these images?
    Thanks - Rick

    Consolidate is the word you are looking for:
    http://homepage.mac.com/bagelturf/aparticles/ref/refrecon/refrecon.html

  • Changing reference images into the aperture library

    Hi,
    I got a large external HD for aperture. How can I move the referenced images from a different HD into the aperture library? These images are already organized into albums and projects in aperture.
    Thanks

    select the images and then choose
    file -> consolidate masters ...
    structure shall remain ...

Maybe you are looking for

  • Why will my 7th generation ipod classic not work in my 2006 VW Passat?

    I equipped my vehicle with the VW iPod connector that was hardwired into my vehicle.  I have used both a 1st Gen iPod video/classic as well as a 4th Gen iPod nano with no issues.  However, the 7th gen iPod classic I recently purchased will not play m

  • Apple Airport(Extreme), time capsule, what is better?

    I am slightly confused what is the difference between the time capsule and airport and different model, etc. I have Apple TV and an IPad so what benefit can I gain from getting either of these product what features do each posses and what requirement

  • Move recorded document between scripts using session map

    Hi all experts on scripting! We have a 2 scripts ! First script is a callback script that is recording a message from the calling customer which is saved in a"recorded document" that will be played towards an Agent when he/she is picking up the callb

  • How can i install Microsoft Silverlight. Is there an app for?

    How can I install Microsoft Silverlight. Is there an app for this? Ipad does not recognise programms .dmg

  • Problem in data

    Hi, Hoe does the BIA work, will there be any data mismatch when using accelerator. I am facing soem issue with the data, need to check if it is because of bia which was activated recently. Rgds, Rani