Creating a Book from selected images in Aperture browser creates empty book

I have been a happy user of Aperture 2 for several weeks now but I have been stumped by a problem when I come to layout a book. Help please!
The problem is that any book I create contains no pictures in the aperture browser - so I can't add anything to my empty books. I have tried everything to get images into my book but nothing works. What is odd is that Projects tab I see that the total number of photos I selected at book creation time is given correctly. I just can't see any in the browser.
I have also tried to drag and drop pictures into the book pages and the project folder but nothing happens.
Any help is much appreciated.
Steve

Hi Thomas,
Thanks so much for replying.
In answer to your question - the bottom bar of the browser does not say anything - and yet the Projects tab lists the book and also the number of images that I selected when I made the New -- Book from the pull down menu option.
I also tried to add images to the book's browser by drag and drop from another project or folder to the name of the book project in the project list. It doesn't work for me.
Very odd as I have been happily importing, exporting and publishing web galleries for several weeks now.
FYI, my Aperture library is about 100 Gb in size with 7,700 photos. I run OS X 10.5.3 on my Intel MacBook Pro 17 inch with 6TB of firewire connected disks.
Any help or ideas are very much appreciated.

Similar Messages

  • Slideshow from selected images in folder - LR3 creates previews of all images

    I select a number of images in a folder in the Library module and go to the Slideshow module. When I run the slideshow LR3 generates previews of all of the images in the relevant folder - rather than merely those for the images I have selected.
    I'm running LR3.2RC in Win 7 64 bit. The same happened with LR3 itself. My recollection (which may be faulty) was that this worked as I would have expected in LR2 (in other words, previews were generated only for the selected images in the folder).
    (I know I could add the selected images to a collection but I don't always necessarily wish to do that.)
    Stephen

    Hi Stephen
    In Slideshow module, on the toolbar you can click on the dropdown options against Use:
    Make sure you check selected items and not all filmstrip items.
    If you can’t see the toolbar above the filmstrip press T and T again to hide it.

  • Create thumbnail from selected images

    Hi,
    in my app the user can choose some pictures from his local
    file system.
    I want to create a smaller image of every selected picture.
    So I do this for each image:
    for( var f = 0; f < e.files.length; f++ ){
    name = e.files[f].name;
    src = e.files[f].url;
    path = e.files[f].parent.url;
    files.push( e.files[f] );
    //...some other code, not important for this...//
    image = new air.Loader();
    image.contentLoaderInfo.addEventListener(
    air.Event.COMPLETE, function() {
    var ratio = null;
    if (image.width <= 100) {
    thumb_height = image.height;
    thumb_width = image.width;
    ratio = 1;
    else {
    var thumb_width = 100;
    var thumb_height = null;
    var factor = image.width / thumb_width;
    thumb_height = Math.round(image.height / factor);
    ratio = 100/ image.width;
    if (thumb_height > thumb_width) {
    thumb_height = 120;
    factor = image.height / thumb_height;
    thumb_width = Math.round(image.width / factor);
    ratio = 100/ image.width;
    var bmp = new air.BitmapData( thumb_width, thumb_height );
    var temp = air.File.createTempFile();
    var desktop = null;
    var matrix = new air.Matrix();
    var png = null;
    var stream = new air.FileStream();
    var div = null;
    var elem = null;
    matrix.scale( ratio,ratio );
    bmp.draw( image.content, matrix );
    png = runtime.com.adobe.images.PNGEncoder.encode( bmp );
    stream.open( temp, air.FileMode.WRITE );
    stream.writeBytes( png, 0, 0 );
    stream.close();
    desktop = air.File.desktopDirectory.resolvePath( toPNG(
    e.files[f] ) );
    temp.moveTo( desktop, true );
    image.load( new air.URLRequest(e.files[f] ) );
    function toPNG( orig )
    return orig.name.substr( 0, orig.name.length -
    orig.extension.length ) + 'png';
    The problem is, that the "thumbnail" is only created of the
    last selected image. I think it has something to do with the
    air.Event.COMPLETE event. But when I kick that off, an error
    occures: Error #2015: Invalid BitmapData. at
    flash.display::BitmapData().
    Hope somebody can help. Thanks in advance

    Here´s a nice example that does exactly what I want:
    <html>
    <head>
    <title>Thumbnails</title>
    <script src="library.swf"
    type="application/x-shockwave-flash"></script>
    <script src="AIRAliases.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var MAX_HEIGHT = 100;
    var MAX_WIDTH = 100;
    var files = null;
    var index = 0;
    var loader = null;
    var output = null;
    function loadImages()
    if( index < files.length )
    output = document.createElement( 'div' );
    loader.load( new air.URLRequest( files[index].url ) );
    } else {
    loader.visible = false;
    function doLoad()
    loader = new air.Loader();
    loader.contentLoaderInfo.addEventListener(
    air.Event.COMPLETE, doLoaderComplete );
    window.nativeWindow.stage.addChild( loader );
    btnOpen.addEventListener( 'click', doOpenClick );
    function doFilesSelect( e )
    files = e.files;
    index = 0;
    loadImages();
    function doLoaderComplete()
    var bmpd = null;
    var encoder = null;
    var img = null;
    var jpg = null;
    var matrix = null;
    var ratio = 0;
    var realHeight = loader.contentLoaderInfo.height;
    var realWidth = loader.contentLoaderInfo.width;
    var stream = null;
    var thumb = null;
    var thumbHeight = 0;
    var thumbWidth = 0;
    if( realWidth > 0 )
    if( realWidth <= MAX_WIDTH )
    thumbHeight = realHeight;
    thumbWidth = realWidth;
    ratio = 1;
    } else {
    thumbWidth = MAX_WIDTH;
    thumbHeight = 0;
    factor = realWidth / thumbWidth;
    thumbHeight = Math.round( realHeight / factor );
    ratio = MAX_WIDTH / realWidth;
    if( thumbHeight > thumbWidth )
    thumbHeight = MAX_HEIGHT;
    factor = realHeight / thumbHeight;
    thumbWidth = Math.round( realWidth / factor );
    ratio = MAX_WIDTH / realWidth;
    matrix = new air.Matrix();
    matrix.scale( ratio, ratio );
    bmpd = new air.BitmapData( thumbWidth, thumbHeight );
    bmpd.draw( loader, matrix );
    encoder = new runtime.com.adobe.images.JPGEncoder( 85 );
    jpg = encoder.encode( bmpd );
    thumb = air.File.desktopDirectory.resolvePath( 'thumb_' +
    files[index].name );
    stream = new air.FileStream();
    stream.open( thumb, air.FileMode.WRITE );
    stream.writeBytes( jpg, 0, 0 );
    stream.close();
    output.innerHTML = files[index].name + ': ' + realWidth + '
    x ' + realHeight;
    document.body.appendChild( output );
    img = document.createElement( 'img' );
    img.src = thumb.url;
    output.appendChild( img );
    index = index + 1;
    loadImages();
    function doOpenClick()
    var browse = air.File.desktopDirectory;
    browse.addEventListener( air.FileListEvent.SELECT_MULTIPLE,
    doFilesSelect );
    browse.browseForOpenMultiple(
    'Select Images',
    [new air.FileFilter( 'Image Files',
    '*.gif;*.jpg;*.jpeg;*.png' )]
    </script>
    </head>
    <body onLoad="doLoad();">
    <input id="btnOpen" type="button" value="Open..." />
    </body>
    </html>

  • Problem with "Create New Extrusion from Selected Layer" CC 2014

    Hello, I'm experienced with Photoshop but am new to 3D text in Photoshop.  I type in some text and convert to a shape.  When I choose Create New Extrusion from Selected Layer I get  dialog box I don't see in any tutorials.  It says "You are about to create a 3D layer.  Would you like to switch to the 3D workspace?  Yes/No, Don't show again."  Which should I use for 3D text? 
    If I choose Yes, all the panels go away and the content in the tool options bar (ribbon?) just under the menu bar go away.  I have to restart Photoshop to get the tool options back.  What could I be doing wrong?
    Thanks - Dave

    I just chose "No" and didn't look back.  I like my workspace just as it is, and don't prefer Photoshop to change it for me under this particular case.
    You can make the 3D panel visible yourself via Window - 3D.  I find it's a good alternate for the Actions panel, as I don't have any actions at the moment that work in the 3D world.
    The panels you'll want to see easily if you work on 3D are the 3D panel and the Properties panel, among a few others.
    Regarding getting your workspace back the way you like it...  Note the little selector near the upper-right corner of the Photoshop main window.  That can be used to select a workspace.  I suggest you experiment and get familiar with the concept of workspaces.  You can define your own and save it with a name, and that truly can be helpful.
    -Noel

  • I have a Kindle and the new iPad 3.  I downloaded one of my Kindle books to my iPad.  Now I want to remove the book from the iPad.  When I highlight the book, the "device" key that I think I am supposed to use disappears.  Please help.

    I have a Kindle and the new iPad 3.  I downloaded one of my Kindle books to my iPad.  Now I want to remove the book from my iPad.  When I highlight the book, the "device" button (which I think I am supposed to use) disappears.  How do I get the select the book and get it off the iPad and back to my Kindle?  Thanks for your help.

    To remove the book simply touch and hold the cover on the main page.  A little pop up will ask, remove?  Say yes.  The book content will de deleted.   The cover will remain on your main page with a little down arrow so that you can redownload it if you wan in the cloud view.  In the device view, it simply disappears.
    Note at the bottom of the page are a couple of switches, labeled cloun and device.  The device switch shows you books on your device.  The cloud page shows your whole catalog, and the down arrow allows you to bring down anything in your catalog to the device.

  • Hi! how can I delete a book from the iCloud? I bought the wrong book ... is for adults and I have kids...so

    Hi! how can I delete a book from the iCloud? I bought the wrong book ... is for adults and I have kids...so

    The most comprehensive delete method I know about is to delete the book from iTunes on the computer you sync your iPad with.  You'll be asked if you're sure, and it will be deleted from your iPad and any other i-Device you sync to.
    I think that's the best you can do.

  • How to remove a crop from selected images

    I need to create different crops on same image from one project, from project, to album, and smart folder i have one lot of crops and now i want to make other crops but the images in the project and blue folders have all the new crops too, how do i get back to a folder with no crops, I'd like to keep the retouches to these images though, i think i should have started differenttl?
    Help appreciated
    Thanks

    Not clear on what you have, but to remove the crop on any given image; you can either clear the check mark in the crop brick or remove the crop adjustment altogether. The crop brick shows in the Adjustment Inspector when you crop an image:
    http://documentation.apple.com/en/aperture/usermanual/#chapter=17%26section=10
    For more info on the crop tool:
    http://documentation.apple.com/en/aperture/usermanual/#chapter=18%26section=6%26 hash=apple_ref:doc:uid:Aperture-UserManual-91292MAD-1013949
    Note - typically, you would create a new version for additional cropped versions of the image. You can use the 'New Version from Master' command (control-click or right-click on image for the menu). This will create a new version to work on that is un-cropped whether the current version is cropped or not, but will not include any other adjustments either.

  • New Catalogue from selected images in other Catalogues

    Hi Guys,
    I have several Catalogues in Lightroom 2.5. I would like to select several images from each Catalogue and put them into a new Catalogue.
    The reason – In each Catalogue I have flagged the images that I want to print. I want to create a new Catalogue with only the flagged images from the other Catalogues in order to do a contact print or multi images on one sheet of paper.
    I know that I could create one Master Catalogue, select the flagged images and then print but I would like to just have a Print Catalogue that I could add images to, from other Catalogues.
    Its there a way to do this ?
    Thanks for your help.
    John

    In each catalogue, select the images and select File > Export as Catalogue. When you're finished, create a new catalogue, and then use File > Import as Catalog for each of the exported ones.
    When you're finished doing all this, do put some time aside to think what else you could have done with all the time you've just used up. With a single master catalogue, you would already have been admiring your prints and having a coffee, with your feet up on the desk too.
    Also see this thread http://www.lightroomforums.net/index.php?topic=8306.0
    John

  • Creating Contact Sheets by selecting images in sub-folders

    I'm new to scripting, so not sure whether this is within the realms of possiblity, but hope that there's an expert out there up to the challenge!
    My goal is to develop a script to automate the process of creating contact sheets for each pupil of a school photoshoot.  The folder structure being used presently is:
    1st level folder:     School name (e.g. "Southbridge School")
    2nd level folders:     Class teachers name (e.g. "Smith")
    In each 2nd level folder (i.e. representing each class) there are always 3 images per child (post processed, so ready to convert to contact sheets).  The image numbers run sequentially, so the first 3 image numbers in the folder are of the 1st child, the next 3 are of the 2nd child, and so on....
    The script I'm looking for would allow me to point Photoshop to the 1st level folder and then automatically create a contact sheet for all children 'found' in the sub-folders.  To do this the script would need to do the following:
    Taking each 2nd level folder in turn, recognise each 'child' is represented by 3 consecutive images - and starting with the 1st 3 images in the folder create a contact sheet.  Then, move on to the next 3 images in sequence and create the next contact sheet, and finish after it completes the final 3 images in the folder.  Then, move on to the next 2nd level folder...
    Create each contact sheet with the 3 images in colour and then the same 3 images in black and white (so 6 images per contact sheet), including the image number under each and a copyright watermark
    Save all contact sheets generated from all of the classes all together in 1 new folder at the 2nd level called "Contact Sheets"
    Give each contact sheet a unique name in the format "<Class teachers name> - xxx"   (e.g. "Smith-1", "Smith-2" etc...)
    So, are there any Photoshop masters out there up to this challenge?!  Your help would be greatly appreciated because the learning curve on this one looks v. steep!
    Alternatively, if you can think of a better way of doing this I would also be keen to hear!
    Thanks

    Awesome! I didnt even know aperture could do that
    Now another quick question on this topic, if im using RAW files, does aperture need to convert the file to jpeg or tiff (like it does if you export version as jpeg)?
    If it does, that may be a problem as it takes forever for aperture on my macbook to convert raws and save as jpegs, like a good minute or two per photo, and if i have 200odd photos....not good, people will crack it waiting and leave.
    Or does it print as raw? Cause im pretty sure my printer (or any printer) can not print raw files. Will try it tonight on my printer but a heads up will be useful.
    I could just shoot in hi-res jpeg, but id rather shoot raw incase they want a large poster size print etc.
    Thanks.

  • Dragging images into Aperture (without creating a new Project)

    Hi All.
    I am trying to pump out a slideshow and I am (in some cases) dragging an image from a desktop folder into a ALBUM in Aperture in which I want the photo. This Album is in a FOLDER with the name of the slideshow along with a number of other Albums in which I am organizing data for this project.
    Aperture is creating a new Project in this folder every time I do this. They are labeled "Untitled Project", "Untitled Project(1)" etc. If I delete the Projects then the image is deleted from the Album that I want it in.
    Is there a convenient solution for this? In some cases the image is already in Aperture but I don't have the time to go hunting for it and in fact it may not be int there.
    Can I somehow create a "Dump Project" that will accept all these new images so that I don't clutter up the space with all the new Projects? Would I do this by dragging and dropping the individual images that are in each of these Projects to the Dump Project?
    Any advice that doesn't involve switching out horses would be really welcome.
    Thanks in advance!
    - Jon

    You can't import to an Album, only to a project. Every pic in the Library is in a project. It has to be. If you drag to an Album it will make new project to hold the file. So, don't drag to an Album, make a project and drag to that.
    Regards
    TD

  • Create Pattern Swatch from Placed Image in Javascript

    I need to create a large number of pattern swatches from some .jpg file on disk. I've figured out how to script the insertion of the .jpgs into my AI document as placed images:
         // Embed the image into the document.
         file = new File("MyImage.jpg");
         var document = app.activeDocument;
         var newPlaced = document.layers["swatches"].groupItems.createFromFile(file);
         newPlaced.name = "MyImage_Placed";
    This works fine and the item shows up in the correct layer as an embedded image.
    Now I want to create a PatternSwatch (I think) from that Image.
    To create a new swatch the code starts out as:
         newSwatch = document.swatches.add();
         newSwatch.name = "MyImage_Swatch";
    but now I'm stuck! How do I associate the new PlacedItem with the swatch I just created? I can see the swatch in the palette so I'm partway there.

    When you say you would drag the image itself into the Swatch Palette and it would show the image itself? How would then use this swatch? Can you give an example of what you would apply a jpeg to as a swatch? The only palette that I can think of off the top of my head that you can drag a jpeg into and have the icon appear as the jpeg is the Symbols Palette. Is is possible that you were using the Symbols Palette in the past and not the Swatch Palette?

  • How to create NEW Pdf from SELECTED pages?! thought this would be so easy!

    I am finding it hard to believe how much time I've sunk into trying to figure this out. I thought it would be as simple as me selecting different pages, right clicking, and then finding "new document from selection," or something like that.
    I have a PDF with about 300 pages. I have a list of page numbers that I need in a NEW PDF. What is the easiest way to do this? Thanks so much.
    -Eric

    I created a tool that does just that (only you will need to enter the page numbers as text, it does not work by selecting them):
    Acrobat -- Extract Non-Sequential Pages: http://try67.blogspot.com/2011/04/acrobat-extract-non-sequential-pages.html

  • Creating a pdf from selection of pages from multiple pdfs

    I have a secured collection of pdfs. I would like to create a new pdf from selected pages of this collection.  I think the way I'm doing it now is contorted.  I screen capture a page, create a new pdf from the clipboard and insert the new pdf to the summary pdf.  Is there a better way?  I think I'm hampered by the fact that the pdf collection is secured, so my options are limited.  I would like to select a page from a pdf and cut and paste the page into a new pdf directly without all these steps.  Thanks in advance.

    Forgot to mention, using Acrobat Professional 8.

  • How can I link from an image to a part of the book?

    I know how to link text but I want to be able to tap on a picture which then brings me to a page in the book... Is this possible? It doesnt seem to allow me to create a hyperlink for an image.

    Hello, if you have the font that Photoshop is supposed to use to write the barcode, and each image is also listed in the spreadsheet, you can use the little known feature called variables: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.h tml
    see this video: 
    http://www.youtube.com/watch?v=LMAeX5pexNk
    Or this one:
    http://tv.adobe.com/watch/adobe-evangelists-julieanne-kost/pscs5-working-with-variables/

  • Can't create a playlist from selection of one track

    Hi there
    Since iTunes 8 I find I cant select one track and go to 'File' and 'New Playlist from Selection'. The option is grayed out. I have a lecture/sermon tracks that I want to burn to audio cds, hence often only one fits to a CD.
    The obvious work around is to choose two tracks and then delete one - or do I even need a workaround? Am I missing the obvious?
    Mark

    I can't do it without your workaround.
    The only other option I see is to make a new blank playlist, name it, and drag your track into the new playlist.

Maybe you are looking for