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!

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)

  • How to set TOC Image for "Import HTML articles"?

    For "Import HTML articles", I set TOC Image (70 x 70 px, PNG) on Folio Builder.
    But at Adobe Content Viewer on iPad, TOC Image doesn't appear.
    I confirmed on Dashboard, TOC Image for "Import HTML articles" appears correctly.

    According to the Page 56, 57, 61 of digitalpubsuite_help.pdf (Last updated 10/4/2011) ,
    "Change article properties" shows how to change TOC preview.
    I changed the TOC previews of some Stacks and the viewer table contents on iPad shows the TOC previews I expected.
    But for the HTML Stack (Import HTML article), the viewer table contents on iPad shows the thumbnail of HTML content (not the TOC previews).
    I confirmed on TOC Preview of Folio Builder and Dashboard of DPS,
    TOC preview for "Import HTML articles" appears correctly.
    What am I wrong?

  • 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

  • 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.

  • How to Check Log File for 'Import Standard Purchase Orders' program?

    Hi,
    When the run the standard program 'Import Standard Purchase Orders' after inserting data to PO interface tables. I am getting the log message as mentioned below.
    Start of log messages from FND_FILE
    To get the log messages for PDOI, please use the following id to query against FND_LOG_MESSAGES table:
    AUDSID = 40499066
    End of log messages from FND_FILE
    When I go and check for the message in mentioned table against the AUDSID,I couldn't find any error listed.
    Even I verified the po_interface_errors table, It returns NO ROWS.
    Help me on this issue.
    Thanks.

    Did you checked the imported PO ? follow step 7-8 from MOS note and check
    Vision Demo - How To Import Standard Purchase Orders Using the Purchase Document Open Interface PDOI [ID 1054004.1]
    You can also check
    How To Diagnose Problems With Importing Standard Purchase Orders [ID 781351.1]
    thanks

  • IPhoto '09 won't recognize .jpg images for importing.

    The resulting pop-up window displays the otherwise normal images as Unix Executable Files. If I convert the .jpg to .jpg 2000, then it imports with no problems. Result is a MUCH larger file. Any fixes?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If the above doesn't help try the following:
    1 - download Convert to JPG and Embed sRGB profile from  Toad's Cellar and drop copies of your problem files on it.  Then try importing the new jpegs that are created.
    OT

  • How should I save Tritone image for import into InDesign?

    Photoshop only gives me 4 file format options, and InDesign CS4 only accepts one, .EPS
    Otherwise I got the error, "This files uses an unsupported color space."
    There are several .EPS options. I chose "Single File with Color Composite". However, I'm concerned because the image looks fine in Photoshop but a little faded when I import it into InDesign and then export it as a PDF.

    See the reply to your existing thread.
    Mylenium

  • 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

  • SAP-JEE, SAP_JTECHS, SAP_BUILDT  not present in Check-In Tab for import

    Platform :J2ee server 6.40 SP19 , <b>NWDI 7.0</b> , XSS 100 SP 16.
    While creation of ESS/MSS track only 3 SCA(ESS/MSS/PCUI) file shows up in the Check In Tab , all the 3(SAP-JEE, SAP_JTECHS, SAP_BUILDT) remaining SAP support file is not present. 
    All 6 File is present in cms/inbox folder.
    What is the reason for the file not showing up in the check in tab? Please let me know , some has a solution to it.

    Hi Akshata,
    Let me add some more to your point, when you deploy these SCA file using SDM. The file system deployment will extract the contained Build Plugin SCAs into the directory /usr/sap/<instance name>/SYS/global/CMS_CBS/plugins. You can now copy the extracted files to the CMS Inbox.
    If you directly copy these files to CMS/inbox then CMS wont recognize them, but once you deploy it,it does recognize them.
    Regards,
    Ameya
    Message was edited by:
            Ameya Pimpalgaonkar

  • Check multiple checkboxes for selected

    I want to see if I can reduce my code more. I have five check
    boxes on the screen and when they are all checked, I want to call a
    function. I don't want to have a long if statement because I will
    re-use this and would prefer to have as streamlined as possible.
    Here is my code now. Thanks.
    var checkboxListener:Object = new Object();
    checkboxListener.click = function(evt_obj:Object) {
    for (cb=1; cb<6; cb++) {
    if (_root["c"+cb+"_ch"].selected) {
    nextItem()
    for (cb=1; cb<7; cb++) {
    this["c"+cb+"_ch"].addEventListener("click",checkboxListener);
    function nextItem() {
    if (c1_ch.selected && c2_ch.selected &&
    c3_ch.selected && c4_ch.selected && c5_ch.selected
    && c6_ch.selected) {
    trace("do something") }
    }

    var checkboxListener:Object = new Object();
    var cbTotal:Number = 5;
    checkboxListener.click = function(evt_obj:Object) {
    var numChecked:Number = 0;
    for (cb=1; cb<=cbTotal; cb++) {
    if (_root["c"+cb+"_ch"].selected) {
    numChecked++;
    if(numChecked==cbTotal){
    trace("do something");
    }

  • 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.

  • Check multiple cells for value and use if found

    Is it possible to check a range of cells to find one that is non-empty and then use that value to populate a different cell?
    Forumla would check the columns, "Day1", "Day2" and "Day3" and if any of them are non-empty, pick one of the non-empty cells and copy that value to the cell in column "HELPER".
    The formual would be in column "HELPER" and the result would look like:
    Day1
    Day2
    Day3
    HELPER
    Fred
    Fred
    Fred
    Mary
    Mary
    Cindy
    Cindy
    Cindy
    Thank you.

    Ha!
    Talking it thru here and in my head a few more times I figured it out.
    =IF ( NOT (ISBLANK(a2)), a2, IF ( NOT (ISBLANK(b2)), b2, IF ( NOT (ISBLANK(c2)), c2, "")))

Maybe you are looking for