How to select multiple images and creat new versions???

How do i select 800 images and make new versions of all of them at the same time? I have tried, but it only does the primary one selected and i don't have primary only selected.

Option V works for me (duplicate version), as does option G (new version from master).

Similar Messages

  • Is it possible to select multiple clips and create a sequence from each individually?

    Is it possible to select multiple clips and create a sequence from each individually?  If you select multiple clips and select "New Sequence from Clip" it puts all of the clips into one sequence.  Is there an easy way to quickly perform this on multiple selected clips separately? 

    So now I *have* used Butler with PPro, and it works very well, here's an idea of how to do it:
    Import folder of clips
    Ensure first clip selected in bin and sorted by Media Type
    Most of these commands need shortcuts assigning - mine listed below
    Macro:
    To create seq from selected clip:
      ‘New seq from clip’ (Shift+CMD+N)
    To duplicate this seq:
      ‘Reveal Sequence in project’ (Shift+F) - not strictly necessary as it will already be selected
      ‘Window | Project’ (CMD+9)
      ‘Edit | Duplicate’ (Shift+CMD+/)
    To rename the duplicate
      ‘Enter’
      Various keystrokes to rename as required
      ‘Enter’ - to make name stick
      ‘Shift+Enter’ - to reselect that sequence
      ‘Esc’ - to get out of editing name
    To change resolution of duplicate:
      ‘Sequence Settings’ (CMD+5)
      ‘Tab’ x 3 (to get to H Frame Size)
      ‘xxxx’ (to enter frame width)
      ‘Tab’ x 1 (to get to V Frame Size)
      ‘yyyy’ (to enter frame height
      ‘Enter’ x 2 as prompt will say previews will have to be deleted
    To then find next clip ready for macro to run again:
      ‘Open in Timeline’ (Shift+CMD+O)
      ‘Match Frame’ (Shift+Spacebar)
      ‘Reveal in Project’ (Shift+CMD+F)
      ‘Window | Project’ (CMD+9)
      ‘Down Arrow’ - to select next clip
    I tried it with Butler (manytricks.com - free trial, $20 to buy) and it worked a treat, takes about 3 secs per clip
    AHK (for windows) is at autohotkeys.com and is free.
    You could start making multiple macros - that would enable you to do grade / resize in middle of duplication - and then export etc, but I figure you can figure that out ;-)

  • I am working in Numbers and can't seem to change the generic value assigned to the legend.  Any advice on how to select the legend and save new values?

    I am working in Numbers and can't seem to change the generic value assigned to the legend.  Any advice on how to select the legend and save new values?

    Ntenich,
    If your table has a Header and your Legend text is in the header, it will be picked up by the table.
    Jerry

  • Id email address cancelled. how do I log in and create new password?

    id email address cancelled. how do I log in and create new password?

    This link tells you how to change your Adobe ID and password:
    http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    And if it doesn't, there's a "Still Need Help?" link which leads you to web chat where you can talk with a person.

  • How to handle multiple updates and creates sequentially

    Hi All,
    I have a requirement where multiple updates and creates will happen on an Order (say Purchase Order). I need to capture all these updates/creates and synchronize the other system in real time. In other words, as soon an order is updated/created in EBS, the same needs to be reflected in other system database.
    I have thought of using a JMS queue that'll store all the incoming creates/updates and a BPEL process will keep polling this queue. But in this case how do I ensure the sequence in which the new instances will be created. e.g. create order message was picked first from the queue and an instance got created. While this instance was in execution, another update happened on the same order for which another instance got created. Now before the first instance could get completed and created an order, second instance is trying to update the custom database because of which it would fail. How to restrict second instance from running before the completion of the first one?
    I have also thought of capturing Order Update/Create business events from EBS but there also the same problem. Instance created by Update event can try to do the update before the instance created by Order Create could create a new order.
    Any method to solve this.
    Any pointers/suggestions/approaches are more than welcome.
    SOA Suite 11.1.1.3
    Regards,
    Neeraj Sehgal

    maybe unit of order and unit of work can help you on that, though i haven't any experience on both topics :
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/jms/uow.html
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/jms/uoo.html
    or the mediator supports some sort of sequencer, see : http://www.xenta.nl/blog/2010/05/14/oracle-soa-suite-11g-resequence-messages-in-mediator/

  • How to changing char. values and create new lines in C_TH_DATA

    Hi experts,
    we need to distribute the cost of some sender costcenters to the corresponding receiver costcenters.
    We have already created a DSO and maintained this with the sender and receiver costcenter. We use this lookup table later in the execute method of our created planning function type to take the sender costcenter and distribute this to the corresponding receiver costcenters.
    I've already implemented an IP planning function based on planning function type for this process.
    At the end when I debug the method I see that this works fine. I give you an example:
    I have in my lookup table the following record:
    sender costcenter           receiver costcenter            distribution percent
    4711                                    4712                                    75
    4711                                    4713                                    25
    Based on those records in the lookup table I've to distribute the cost of sender costcenter to the receiver costcenters.
    Just imagine I would get this record from c_th_data:
    sender costcenter    costelement     value
           4711                 3000111         100
    I have to have the following result after running the exit planning function:
       costcenter    costelement     value
           4711                 3000111         100                   -> without changing
           4711                 8000111        -100
           4712                 8000111           75
           4713                 8000111           25
    When I debug the exit function I see in the execute method that c_th_data will be filled correctly. I see exactly the records that I want to see.
    But once the function is finished I don't see this result. I also checked the conversation
    Changing Char Value in IP C_TH_DATA
    but I can't understand what happens after my coding yet.
    Can anyone help me or give me an advice what could be the problem here?
    Thank you all in advance for your support.
    Kind regards,
    Ali

    Hi Ali,
    The planning function generates the records in delta mode. I am explaining the concept taking your example only:
    Records in cube before running PF:
    sender costcenter           receiver costcenter            distribution percent
    4711                                    4712                                    75
    4711                                    4713                                    25
    sender costcenter    costelement     value
           4711                 3000111         100
           4712                 3000111         100
           4713                 3000111         100
    The records that you need to generate from code(Previous ones need to be changed):
    sender costcenter    costelement     value
           4711                 3000111         000
           4712                 3000111         175
           4713                 3000111         125
    **Please note that you dont need to generate any corrections(delta records), you only need to generate the final values in the records and the PF will generate the delta's on its own. Also in this case you should see 3 Records Read, 0 Deleted, 3 Changed.
    Please let me know if you need any more clarification,
    Thanks,
    Puneet

  • How to process multiple images and each image has multipl links dynamically

    I saw this web site
    http://escience.invitrogen.com/ipath/iPath.jsp?cn=united+states&mapid=479&highlightGene=ADAM10
    when the small icons in the left map is clicked, the corresponding information of the icon display on the right. For one map, I know I could set up static URL for each gene name. But there are hundards of images, is there a way to dynamically process all the images instead hard code hundards of pages?
    Many thanks!

    The map is generated using Macromedia Flash. (I could tell because when I right-clicked on it I got a context menu including "About Macromedia Flash Player 8".) That's a programming language you could learn if you liked, but it has nothing to do with JSP.

  • Does anyone know how to select multiple files in photoshop cs6 on macbook pro lion

    I'm new to Mac operating system. Can anyone tell me how to select multiple images in cs6 photoshop? Without having to hold down a shift or cmd key and clicking on each one.

    I assume you are using the Shape tool to draw your hexagons. After you drag out the shape, use the Transform controls to tweak the size, so that the width is evenly divisible by 4, and the height is an even number. If you wand a gap between shapes, include that in your adjustments. Make a note of the new width and height.
    Once the scaling is committed and the shape is selected, Control+Alt+T to Free Transform Copy, and in the Option Bar, set the X and Y to Relative. Set X to zero, and Y to the height you set earlier, and commit the Transform. Then Repeatedly press Shift+Control+Alt+T to make more transformed copies.
    With a vertical column of shapes, Alt-Click on the Shape Path in the Paths panel to select the whole path. Control+Alt+T again. This time, again using relative, set X to three-quarters of the width you noted earlier, and Y to one-half the height, and commit
    Finally, again Alt-click on the Shape Path in the Paths panel, and Transform Copy relative with X = one and a half times the width you noted, and Y to zero. After committing this, Shift+Control+Alt+T as above to extend more columns.
    And JJ, those are Octagons .

  • Selecting Multiple Images to Copy - Fragmented Image

    Hello!
    I made a pdf out of a powerpoint presentation on a friend's windows computer. I am now trying to extract an image that I lost while editing on my computer. The problem I have run into is that the image was fragmented into multiple pieces in the PDF (1 image is now 3 parts). I cannot seem to select all of the images and do "copy images" as you can with one part.
    I can select all the pieces with the touchup object tool and edit them in illustrator and then manipulate them but this is very much the long way around.
    Since I have to do this with many graphics, I am trying not to take the long route. Is there a way to select multiple images and copy them? Or is there a way to select everything with the touchup object tool and just copy it to the clipboard?
    Any thoughts?
    -Mike

    I am also running into this issue. I happens in PDFs coming from all programs that our clients use to produce the PDFs. InDesign, Publisher, Word, WordPerfect.
    My question is: back in CS3 days, I could select all the images (one image that broke into any number of horizontal sections) with the TouchUp tool and select>edit objects...They would all open as one image in photoshop, I could do my edits, save and then replace what I had on the PDF with the new saved file (jpg or pdf or tiff).
    We upgraded to CS5 and now I can't do that anymore. I go into my PDF, select all parts of the image and then edit, but only the first part I selected is editable. I would like to say that it's a CS5 issue, but we had one machine, back when we all had CS3, that would do the same (not edit all the parts as one). I'm thinking it's some sort of preference or combination of preferences in both Acrobat and Photoshop, but I can't figure it out.
    I know one runaround is the "Snapshot Tool," but it was much better before when we could edit what we needed and that's it.
    Thank you for your attention,
    Leonardo Pedreros
    P.S.: Please don't judge me about Illustrator VS. Photoshop...they REFUSE to give us Illustrator at work, for some reason ($$$). If only they knew the amount of time and file size that Illustrator saves, they'd invest in 5 measly licenses.

  • Selecting multiple images at once

    I am having trouble figuring out how to click and drag the "invisible box" that usually shows up in other apps. I'm wanting to select multiple images and this would make it much easier since sizing and placing makes it difficult to select each image. Hopefully this makes sense as I am unsure what to call it. Thanks in advance for any help on this.

    It's okay, I answered my own question. For those who may have the same problem, you have to click on the image before holding the mouse button down and dragging while pressing the command key.

  • Select Multiple Images

    For some reason, I can't get LR to make changes to multiple images. For example: I select multiple images and apply the same rating and it only does one image. Same thing for deleting. Also, I select multiple images to use a external noise reduction and it also one uses one image.
    I am wondering if I have a setting turned off somewhere to prevent it from applying changes to multiple images.
    Thanks

    That did the trick.
    Thanks

  • When selecting multiple images in LR 5.2 on Mac, how do I delete all selected photos?

    Based on http://forums.adobe.com/thread/1308132?tstart=0 I decided to add each question seperately:
    Hello, I'm quite interested in buying Lightroom 5.2. I tried the RC which ran out now. Yet, I have a several questions that I can't really find good conclusive answers to, that I'd like to get answered before buying LR. Please don't write maybe like this or that (assumptions), since I don't want to start my whole workflow and then realize that I have to change everything around, so please answer, if you know for sure that something works and you are, preferably, using that method too.
    When selecting multiple images in LR 5.2 RC on my Mac, using the Filmstrip view, how do I delete all selected files using a shortcut (as opposed to the right-click context-menu > remove selected photos)? Details: Using backspace asks me if I want to delete it, I choose from disk, but it just deletes individual photos, so if I have 3 selected, I need to do this 3 times.

    Many users (including me) will thank you for saving us the trouble of looking for this description in the manual. Seriously!
    However, if something performs unexpectedly, if it's not a bug, it's at least a user-inconvenience.
    When an unexpected result like this occurs in a product, often the documentation writer is given the task of writing the workaround into the docs. That's not a great way to fix bugs permanently, even if it does help in the short term. So, it's probably a good idea to point to where in the documentation it seems that the product-performance problem is smoothed over, when filing the report/request.
    Feature enhancement requests and bugs are filed the same way. And, developers do listen to requests. Many features in many Adobe products originated in feature requests. However, product managers and, financial-management folks above them, who have some power to decide where to expend resources, set the priorities. Adobe's new subscription model is supposed to release some of the pressure on developers to meet a new release deadline every-so-often, where a whole bunch of product improvements is revealed, and instead, under the idea of making constant improvements available through more-frequent updates, users will get results sooner.
    dj_paige wrote:
    peter at knowhowpro wrote:
    Have you considered filing a bug report or feature enhanacement request (depends if the develoopers think it's a bug or "as designed") here: LR-WISHFORM
    As far as I know, this is not a bug, this is a feature of Lightroom (although I can't explain why anyone would want Lightroom to operate this way). You can find text in the Lightroom Manual that clearly explains tha operations performed on selection of photos in the Filmstrip is different than the same operation performed on photos selected in the Grid.

  • How do I select multiple songs and uncheck them from compilations (itunes 10.5.2)

    So I found to my annoinance that itunes has recently moved much of my music to compilations that shouldn't be there. I tried searching online for how to turn compilations off or select multiple songs and uncheck them from compilations all at once and although I found both answers, they must have only worked for older versions of itunes. I no longer can find the option to turn off compilations under preferences and when I try to select multiple songs at a time then press "Get Info" the "part of a compilation" checkmark is not there. It is only there when one song is highlighted. This is very frustrated. In fact I would venture to say I've never been so angry with Apple. There are 609 songs "stuck" in my freaking compilations! I don't have time nor should I have to take the time to go through every single song right clicking it, pressing "Get info", unchecking "part of compilation" then clicking ok. WAY TOO MUCH TIME! If anyone has any good news on a faster way to do this I'd be VERY THANKFUL!

    This was a life saver! I even started to manually tick the box as well!

  • I am trying to import photo's on i photo.  It downloads all of the pictures on my camera, how do i only select the photos i want?  Is there a way to do this without selecting one photo at a time? is there a way to select multiple images?  thanks!

    I am trying to import photo's on i photo.  It downloads all of the pictures on my camera, how do i only select the photos i want?  Is there a way to do this without selecting one photo at a time? is there a way to select multiple images?  thanks!

    To select consecutive images click and drag the cursor over multiple thumbnails to select all at once.
    To select multiple images that are randomly located hold down the Command(⌘) key and click on those images you want to select.
    Or to select consecutive images from a list of images that are together hold down the Shift key and and click on the first photo you want to select and the on the last photo you want in the list.
    OT

  • How can I make the popup with empty fileds and create new record?

    I would like to use a popup to create new record.
    I created a af:popup by drag and drop a VO from data control to jsff. then, I created a button and place a af:showPopupBehavior. I was able to popup window by click the button.
    however, the window filled with the information from the 1st record. and when I select a record in table and click popup, the popup is filled with that record.
    How can I make the popup with empty fileds and create new record by saving the popup?
    Thanks

    You can have edit and new buttons, in the PopupFetchEvent identify button source (using popupFetchEvent.getLaunchSourceClientId()) if new button clicked clear the binding using below code.
    If you want to see empty fields, in the popup PopupFetchEvent clear the input component bindings.
    resetBindingValue("#{bindings.<componentid>.inputValue}", null);
        public static void resetBindingValue(String expression, Object newValue) {
            FacesContext ctx = FacesContext.getCurrentInstance();
            Application app = ctx.getApplication();
            ExpressionFactory elFactory = app.getExpressionFactory();
            ELContext elContext = ctx.getELContext();
            ValueExpression valueExp = elFactory.createValueExpression(elContext,expression,Object.class);
            Class bindClass = valueExp.getType(elContext);
            valueExp.setValue(elContext,newValue);
        }

Maybe you are looking for

  • Does iMovie for the iPad support green screen functionality?

    Was wondering if someone could help me out with this  I want to incorporate the use of green screen in my classroom.

  • TC wifi seen but no longer connecting

    I bought my time capsule 1 tb about 4-5 months back and it has worked flawlessly. Last night I taught a photography workshop and wifi was working fine for my presentation on my macbook pro. Today though, all of a sudden all wireless internet in our h

  • SDK service is not starting

    I cannot open the SCSM console . I am getting the below error message . I am not sure if its network issue or some thing else. The sdk service will not remain in started state . But when I run telnet on the workflow server , I get the message that th

  • Distinct boxes for chief position in Org Chart

    Hi, Is it possible to change the icons and the colours of the org chart boxes for line managers only (i.e. chief position or A012)? What config is needed to make this change? Thanks, Vibhu

  • ORA-24344 with JAVA SOURCE

    Hello, I try to recompile java stored procedures. I do it like this : ALTER JAVA SOURCE MY_JAVA_SOURCE_NAME compile; And I get the following error : ORA-24344: success with compilation error But if i do this it works. CREATE OR REPLACE AND RESOLVE JA