Adding a filename label to multiple images for a book

Hi. I have finally convinced my studio to go Mac and we are presently playing with a trial version of Aperture.
I am presently trying to create a new book using the Stock book theme, to create a book of thumbnails. I have taken out all the text boxes and made a page - creating the thumbnails the right spacing and size, but now I am trying to add labels to each thumbnail. I have successfully created a label linked to the meta data (file name) but I want this to apply to all the images. I have about 400 images so as you can imagine don't want to click new label for each one. I have tried to copy and paste the caption but all it seems to do is repeat the same file name, so I have 30 pages all labeled 001.jpg.
Can anyone help? I'm sure in true Apple fashion its quite simple, but I still have not worked it out and am running out of time.
Any help would be greatly appreciated.
Thanks
Hannah

You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
However, you can only send 4 pics at a time to an external editor.
Regards
TD

Similar Messages

  • Unable to select multiple images for upload

    I have Windows 7 Pro and FF 9.0
    I have an online store and am always uploading product photos for items I have listed. I recently switched from XP Pro to Windows 7 Pro. I had no issues with XP. However, now that I have Windows 7 Pro I am unable to select multiple images for upload when using FF. I can only select one image at a time.
    The issue is unique to FF. I have tried in several other browsers, and FF is the only one that I am unable to select multiple images from.
    I had FF 8.0.1 and upgraded to 9.0... hoping that would resolve the issue. It did not. I have restarted my computer several times which has also had no effect.

    Hi,
    Welcome to the    Discussions
    I see it is about 6 hours since you posted, so I guess you will get this when you wake. (I'll be sleeping then)
    This would be better asked in the forum for Using Leopard inside the Leopard Category sating which browser and which site it was.
    (it probably made lots of sense to you when you were typing it but it seems a little short in facts or workable info.)
    8:43 PM Wednesday; March 24, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    Message was edited by: Ralph Johns (UK)

  • Adding multiple images for tiled background?

    Hi,
    I'm having some trouble trying to add multiple images to the my tiled layer class. I can't figure out a way how to add these images to my current code. My goal is to add at least 4 images onto the screen.
    Here's my code:
    private void buildBackground() throws IOException
            Graphics g = getGraphics();
            Image tileImageOne;
            Image tileImageTwo;
            Image tileImageThree;
            Image tileImageFour;
            TiledLayer tiles;
            try
                tileImageOne = Image.createImage("/tile_1.png"/*, "/tile_2.png",
                        "/tile_3.png", "/tile_4.png"*/);
                tiles = new TiledLayer(11, 14, tileImageOne, 20, 20);
                int[] grid={
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    1,1,1,1,1,1,1,1,1,1,1
                for(int i=0; i<grid.length; i++)
                    int column = i%11;
                    int row = (i-column)/11;
                    tiles.setCell(column, row, grid);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    catch(IndexOutOfBoundsException e)
    e.printStackTrace();
    catch(IOException io)
    io.printStackTrace();
    Edited by: vopo on Sep 22, 2007 4:35 PM

    I've read the API.
    But the thing that confuses me is the uploading of images. I can't figure out how by uploading different images can the code recognize which one would go into the tile.
    -I know in the api it shows different numbers to display each tile used with a specified image. But I can't figure out how to code it.
    Here's my attempt
    private void buildBackground() throws IOException
            Graphics g = getGraphics();
            Image tileImageOne;
            Image tileImageTwo;
            Image tileImageThree;
            Image tileImageFour;
            TiledLayer tiles;
            TiledLayer tiles2;
            try
                tileImageOne = Image.createImage("/tile_1.png");
                tileImageTwo = Image.createImage("/tile_2.png");
                tiles2 = new TiledLayer(11, 14, tileImageTwo, 20, 20);
                tiles = new TiledLayer(11, 14, tileImageOne, 20, 20);
                int[] grid={
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    0,0,0,0,0,0,0,0,0,0,0,
                    1,1,1,1,1,1,1,1,1,1,1
                for(int i=0; i<grid.length; i++)
                    int column = i%11;
                    int row = (i-column)/11;
                    tiles.setCell(column, row, grid);
    tiles2.setCell(column, row, grid[i]);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    tiles.setPosition(GAME_ORIGIN_X, GAME_ORIGIN_Y);
    tiles.paint(g);
    catch(IndexOutOfBoundsException e)
    e.printStackTrace();
    catch(IOException io)
    io.printStackTrace();

  • How to use the same (selection) paths in multiple images for batch processing?

    I have a whole bunch of photos I need to batch process, but, when creating an action for this, I stumbled upon the problem that the paths I selected with the pen tool, and saved under the "Paths" tab need to be in every image for to be used in the action. I did try to solve it for some time, but couldn't figure out. Any ideas?
    Many Thanks
    Carlos

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • [REQ] resizing multiple images for same height or width

    I often insert a lot of images in my indesign documents on a single page. I need to make them of the same height and then resize the image accordingly. I'm using cs6
    For example to align all the images horizontally in a neat way, I change the height manually [for e.g. 60mm] in its dimensions box. Is there a way to do it quickly? Eg. I select all the images and put their height 60mm and their height becomes as specified and they get resized accordingly?
    Same is the requirement of images for width.

    See my reply here: [REQ] fast performance of an exported pdf on slow pc

  • Multiple seats for event booking

    Hi everyone,
    My event bookings form is currently set up to only take 1 booking at a time. I found the information at the following url to extend the form for multiple bookings:
    https://forums.adobe.com/docs/DOC-1774
    It said to add the following input field to the form:
    <input class="cat_textbox" id=BookingAllocation name=BookingAllocation>
    I just have two questions about this. Firstly, if I go into my form and add in a custom field, I get the following code:
                <tr>
                    <td><label for="CAT_Custom_330508">How many seats would you like to book? <span class="req">*</span></label><br />
                    <input type="text" maxlength="4000" name="CAT_Custom_330508" id="CAT_Custom_330508" class="cat_textbox" /></td>
                </tr>
    Each of the "name", "id" and "for" attributes in the above code, all have a custom field number, ie. Custom_330508. From what I have read, apparently I'm not supposed to change these as this is what BC uses to insert the data into the correct field within the CRM. The "id" and "name" values from the input field that I got from the abovementoned url are:
    id=BookingAllocation name=BookingAllocation
    So the problem is how can I get it to work if I'm not supposed to change the custom field number from my BC form. Also, once a person has entered a number into that field how can I get that field to update the amount field lower down on the form, ie. to multiply the number by the event cost?
    I'd really appreciate any help.

    Hi,
    In iChat 2 it was possible to have one name and Chat to it (Text only) in two locations (Chatting to your self as it were)
    In iChat from iChat 3 you can set each Mac at one location to allow Multiple Logins with the same Screen Name.
    This on the whole means that all computers will "Answer" an IM and show at least one side (incoming) of the Chat.
    Now in addition to this you can also set iChat to Not accept Off Line IMs (either by answering the questioning IM from AIM or on the AIM web site - you can login with your @mac.com name)
    as well as that iChat can be set in the General Preferences to "When iChat is Quit, Set My Status to Off Line"
    this effects not only Off Line IMS but also the fact iChat will start Up if the computer is On and someone IMs you.
    My experience is that it does not seem to be consistent and that the above settings seem to have something to do with it.
    There does not seem to be a limit to the number of Multiple Logins that you can have. (seats as you put it)
    Jabber accounts do not allow Multiple logins so the issue does not arise as you cannot essentially login on multiple computers.
    Summary.
    The best thing I can suggest is tweaking the General settings and see if things change
    9:36 PM Thursday; January 21, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Multiple authors for a Book

    In the below example, the book titled 'Collapse of the Dollar' has multiple authors.
    create table books
    (surrId number(5),
    book_id number(7),
    isbn number (10),
    title varchar2(100) ,
    Author varchar2(100)
    insert into books values (1, 457, 8478, 'Perilous Power' , 'Noam Chomsky');
    insert into books values (2, 458, 2345, 'Macbeth' , 'Shakespeare');
    insert into books values (3, 459, 6789, 'Collapse of the Dollar' , 'James Turk');
    insert into books values (4, 459, 6789, 'Collapse of the Dollar' , 'John Rubino');
    col title format a35
    col author format a15
    col title format a15
    set lines 200
    SQL> select * from books;
        SURRID    BOOK_ID       ISBN TITLE                               AUTHOR
             1        457       8478 Perilous Power                      Noam Chomsky
             2        458       2345 Macbeth                             Shakespeare
             3        459       6789 Collapse of the Dollar              James Turk
             4        459       6789 Collapse of the Dollar              John RubinoI need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )
    expected output
          -- no need to retrieve surrogate ID
      BOOK_ID       ISBN TITLE                               AUTHOR
          457       8478 Perilous Power                      Noam Chomsky
          458       2345 Macbeth                             Shakespeare
          459       6789 Collapse of the Dollar              James Turk|John Rubino
          Related question on the above Table design (Create table DDL shown above):
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ?
    One wonders how Amazon has desined its books table :)

    Hi,
    Pete_Sg1 wrote:
    I need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )Get there : {message:id=9360005}
    and scroll down to "string aggregation"
    Pete_Sg1 wrote:
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ? I would have had a table for books, and a separate one for authors, and a 3rd one for their relations :
    create table books
    book_id integer,
    title varchar2(100),
    etc...
    create table authors
    author_id integer,
    name varchar2(100),
    etc...
    create table book_authors
    book_id integer,
    author_id integer
    );You could also have only 2 tables book and authors (with authors table having a fk column to book_id).
    It would depends if the author is supposed to remain unique throught different books.
    - The 3 tables model would allow a single update on author information to be automatically "propagated" to all book he participed in.
    - The 2 tables model would allow to have different information for each participation of the author to different books (but would certainly "duplicate" part of the data about the author)
    One can also have even more tables to totally avoid data "duplication".

  • Multiple sources for address book

    Is there a way to keep different sources for addresses separate and discrete in Address Book? For instance, we have our own addresses from iCloud, but I also have addresses coming from Google Mail. We've worked hard to keep the iCloud ones updated and "clean", whereas the Google Mail ones are a bit messier. Is there a way to keep them distinct when importing/subscribing from Address Book? Or, does all the information end up getting merged?
    Thanks,
    John

    Hi,
    Pete_Sg1 wrote:
    I need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )Get there : {message:id=9360005}
    and scroll down to "string aggregation"
    Pete_Sg1 wrote:
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ? I would have had a table for books, and a separate one for authors, and a 3rd one for their relations :
    create table books
    book_id integer,
    title varchar2(100),
    etc...
    create table authors
    author_id integer,
    name varchar2(100),
    etc...
    create table book_authors
    book_id integer,
    author_id integer
    );You could also have only 2 tables book and authors (with authors table having a fk column to book_id).
    It would depends if the author is supposed to remain unique throught different books.
    - The 3 tables model would allow a single update on author information to be automatically "propagated" to all book he participed in.
    - The 2 tables model would allow to have different information for each participation of the author to different books (but would certainly "duplicate" part of the data about the author)
    One can also have even more tables to totally avoid data "duplication".

  • Potential [BUG] in PS Touch for Android, v. 1.7.5; can't select multiple images for export in different folders

    Can anyone repro this; it's somewhat situational depending on how you organize your projects:
    In the project selection user interface, go to export (5th icon from upper right) > choose a desired destination (like Save to Gallery or Camera Roll). Choose a project.
    If you have projects residing in multiple folders, try and navigate to another folder by using the "back arrow" icon in the upper left. Once you're out of the folder you just left and try to choose another, PS Touch simply does not respond. (It doesn't lock up; it just doesn't register tapping another folder.) I could have sworn I was able to export images in multiple folder at once before.
    Using a Google Nexus 2013 Wi-Fi model with Android Lollipop 5.0.1. I can record a movie if need be illustrating this potential issue.

    Update: I've worked out the difference between the two sets of errors I get.
    The basic error is this:
    ORA-00200: control file could not be created
    ORA-00202: control file: '+DBLIVE1'
    ORA-17502: ksfdcre:4 Failed to create file +DBLIVE1
    ORA-15001: diskgroup "DBLIVE1" does not exist or is not mounted
    ORA-15055: Message 15055 not found; No message file for product=RDBMS, facility=ORA
    ORA-01031: insufficient privileges
    However if my init.ora contains the line:
    control_files=/opt/oracle/server/10.2.0/dbs/cntrlNEONREL1.dbf
    then I instead get the second error:
    CREATE DATABASE "NEONREL1"
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00349: failure obtaining block size for '+DBLIVE1'
    ORA-01031: insufficient privileges
    So basically these must be the same error, just in the second case I'm not trying to put the control file on the ASM so it fails at a different point.
    But both errors must be because of the same cause, I suppose.

  • Adding a text label to multiple photos in an event

    I wonder if I can embed a label to all photos in an event? For example: Name of photographer and website.

    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    However, you can only send 4 pics at a time to an external editor.
    Regards
    TD

  • Checking multiple images for import

    Perhaps there is a way to do this quickly, but I can't find it in the 'help' . OK, so I can 'Uncheck All' or 'Check all' for import - or go through ticking the tiny box for each image I want to import.
    But, is there any way of just selecting a group of images, as you would to 'stack' for instance, and then 'checking' them for import - I can't be the only user who has multiple projects on a single CF card for example and wants to import stuff to different libraries etc (quickly instead of one by one and with a decent sized 'target' area rather than the tiny tick box).
    Given that Aperture majors on 'workflow', perhaps I'm missing something really obvious, in which case, please let me know. If I'm not missing it, why is it missing, please Apple, put some more functions than just 'stack' under the RMB for importing.
    Thanks for any steers.
    Stephen

    OK, sorry, Found it. Select the images then hit the tick box for one and it selects all. Is that in the manual? Perhaps obvious, wish I'd found it before writing the question!

  • Multiple Images for albums

    Very recently, I can no longer view the other images I've added to individual albums, in the album artwork viewer. The images are in the file info but not viewable with the 'Selected Images' tab (the next image 'arrow' has diappeared)

    Hi, this is bothering me a lot as well, some time ago I had a thread about it:
    https://discussions.apple.com/message/17555584#17555584
    and this one too:
    https://discussions.apple.com/message/17559240#17559240
    please complain to apple about it, use the feedback page
    http://www.apple.com/feedback/itunesapp.html
    and/or use Bug Reporter.

  • Using multiple themes for photo book

    Is there a way that one can create a photo book using different "themes" throughout? Say if I want one page to be "Tropical" and another with "Modern"........is such modifications allowed? Thanks in advance.

    The Print to PDF->Save PDF to iPhoto only creates a 200 dpi jpg image of each page. You can edit that Automator workflow and change the dip to 300, what iPhoto uses when it converts the book to pdf for uploading and printing. Or you can download an edited +Save PDF to iPhoto 300 DPI.workflow+ from Toad's Cellar and place it in the HD/Library/PDF Services folder.

  • Select images for a book from a light table?

    Hi,
    the light table seems to be a good place to group pictures, set relative sizes and define some general ordering. Once I have done that using the light table, I want to create a book based on the light table. One way would be to create a new empty book and drag pictures from the light table to the pages of the book.
    Is there a way to view a light table and the book's pages at the same time?
    Regards,
    Rainer Joswig
    PowerMac Dual G5, 2.5Ghz   Mac OS X (10.4.3)  

    No, you don't have to crop them. The "frames" on each page are set for the 4:3 size so that when a photo is put in a frame and enlarged to fill it all portions of the photo are still visible. You can but a 3:2 photo in a frame and it should enlarge it just so the long edge fill the frame leaving you with a little more white space.
    There's a slide bar to enlarge if necessary. If you Control-click on the image, there will be an option to Fit photo to frame size. There you may cut some off. But you'll need to experiment to see if it will suit your needs.
    Do you Twango?

  • Setting multiple album images for a group.

    I want to put multiple images for CDs that I have (Front, back, inside of booklet, etc). Can I do this for an entire CD or do I need to do each song separately?

    You can add multiple album artwork images to multiple tracks at the same time, but not through the Multiple Song Get Info pane. Each time you drag an image onto the Artwork box in this pane, the previous image is erased.
    To add multiple images, select your tracks in the main iTunes Window, and make sure that Artwork box under the Source Menu is visible. Then just drag the image you want to add to the tracks onto this pane, but make sure you FIRST add the image you want to appear FIRST. There isn't any way to reorder the images in a group of tracks - that has to be done in the individual track's artwork pane (Get Info>>Artwork tab).
    Lita

Maybe you are looking for

  • Excel service and OWA - getting ERROR while trying to open/edit Excel documents

    Hi All, We have configured SharePoint 2013 with Excel Service and OWA (Office Web Apps). After configuring, we are able to view/edit Word or PowerPoint documents from the browser (as OWA is configured). But we are getting errors while trying to open/

  • Does wireless transfer of photos and videos from iPhone 4 to iPad 2 also use broadband bandwidth?

    I have an iPhone 4 and iPad 2 and our house has wifi and a BT Wireless Hub . My question is:  When photos and videos are automatically transferred from the iPhone to the iPad over the BT wireless hub, does this also use any broadband bandwidth?

  • Purchase Requisition fields & table

    hi experts,                 I have a requirement to make Purchase Requisition report. Is there any standard report so i can copy and modify it. Or u guys have made some report of the same. its urgent. Or plz tell the table & field names of the follow

  • Security with local html files

    Hi, I've a problem, I'm writing a html report with a python app and I'm loading the html into a HTML component. The problem is: I can't make the drag and drop between air and javascript works; I'm getting: TypeError: Undefined value in the dropHandle

  • Printout of report output

    Hi Friends, How to get the printout of report output in foreground mode? Thanks in advance Murthy.