Multiple Image Adjustment Problem

I used to be able to select a range of images and then change the exposure on all of them simultaneously.  Now when I select a range of photos, only one has a thicker white border, the rest have a thinner border.  And when I apply exposure change (or any adjustment) it only affects the thicker photo.  All the rest are unchanged. 
I do not have Edit Primary selected. 
This is a recent phenomenon.  Any help would be greatly appreciated.
Cheers

The Image with the thicker border is called the "Primary Selection".
The tool that toggles between all selected Images and the Primary Selection is called "Primary Only".
Afaik, changes made with the sliders and other controls in the Adjustment Bricks on the Adjustment tab of the Inspector affect only the Primary Selection.  (The same is true of changes made on the Metadata tab of the Inspector.)  I have never seen any other behavior.
Commands issued from the Menu or with keyboard shortcuts affect all selected Images, unless "Primary Only" is set to "on".
How were you applying exposure changes to multiple images in the past?

Similar Messages

  • Multiple image upload problem

    When trying to use the Multiple Image Upload feature I get this error
    A script in this movie is causing Flash Player 9 to run slowly, if it continues your computer may become unresponsive. Do you want to abort the script?
    This message pops up after a single file is uploaded, the second bar labeled progress remains at 0%.
    I have experimented with this all day with no luck, any help would be great...
    Forgot to mention, PHP/MYSQL
    Also happens if I try multiple file upload vs. image.
    I can't tell if it's ADDT or Flash, hopefully since they are both adobe someone can figure it out.
    Thanks in advance...

    Thanks for the reply, in this case it was a server setting that had to be modified. Mod_security would not allow folder creation by Apache. The single up loadd worked fine because it did not have to write a directory.
    It did not show up in the server logs for some reason.
    Hope this saves someone hours of trouble shooting.

  • Multiple Image upload problem in IOS

    In my Application, I have to upload multiple pictures and I have used file upload control.  Application is working fine in IE Browser, Safari (on Windows) and other browsers, but getting problem with the Safari (IOS), After uploading the second pictures, first pictures gets replaced by the new one. This seems to problem only with mobile safari ( on IPAD, IPHONE with IOS 6.1). I have used the standard code <input type=file accept="image/*">.
    The flow is like, user will upload 4 pictures and then will hit the save button, but as I upload the another pictures, the other pictures gets refreshed and latest uploaded image is shown in All fields. But on Server correct file is uploaded.  Can anyone help me on this Problem?

    Apparently the problem is with the host. According to the
    host I was trying to install this on, there is a security issue
    with Flash upload programs and they don't allow them. So I tried a
    different host (Jodohost) and it worked.

  • Adjust date/time for multiple images

    Wonder if anyone else is having this problem (some posts seem similar but not exactly the same)
    1. Clean library (mix of DNG, JPEG and TIFF files)
    2. Need to change dates to match other images in the project
    3. Selected multiple images and used Metadata -> Adjust Date/Time
    4. "Lead" image (bright white box) date and time adjusted accordingly but other images in the selection date have their capture date and time generated apparently randomly (I'm trying to set 08/01/2008 but I'm getting anything from 27/03/1982 to 24/12/2010!)
    5. The dates do appear random - repeating the process will lead to different dates in the IPTC field
    6. I've clean installed everything - drive format, OSX10.6.2, Aperture 3 - and rebuilt the library. The problem remains unchanged!
    Any ideas?
    Cheers,
    Adrian

    I'd actually looked at this before attempting the metadata adjustment but checked it again just now to ensure I wasn't missing anything.
    I guess if it's a shift based on the relative differences in the date of the imaes selected then that could explain the apparent random variations I'm getting. Although this would certainly be useful for the time stamp, when I'm trying to ensure all images in a project have the same date, relative changes certainly aren't!
    I'd have to run it again tonight to confirm by comparing before/after adjustment dates. If that's what going on I think I'll have to get Adobe Bridge to do the heavy lifting for me..... just a shame I have to drag in another app rather than doing everything inside Aperture.

  • Problem in Loading Multiple image in Single Sprite/MovieClip

    Hi All,
    I am having a killing problem in loading multiple images in single movie clip/sprite using a separate class.
    Here is the ImageLoader.as class
    package com.project.utils{
        import com.project.*;
        import com.project.utils.*;
        import flash.events.EventDispatcher;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import flash.display.Loader;
        import flash.events.IOErrorEvent;
        import flash.net.URLLoader;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.display.Bitmap;
        public class ImageLoader extends EventDispatcher {
            public var imgloader:Loader;
            public var imgMc:MovieClip;
            public var imgObject:Object;
            public var loaded:Number;
            public function ImageLoader():void {
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
            public function loadImage(imgHolder:MovieClip, imgObj:Object):void {
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
                imgMc = imgHolder;
                imgObject = imgObj;
                imgloader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoad);
                imgloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onImgLoadProgress);
                imgloader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,onImageLoadFailed);
                imgloader.load(new URLRequest(imgObj.FilePath));
            private function onImgLoad(Evt:Event):void {
                var image:Bitmap = Bitmap(Evt.target.content);
                try {
                    imgMc.removeChildAt(0);
                } catch (error:Error) {
                imgMc.addChild(image);
                try {
                    if (imgObject.URL != undefined) {
                        imgMc.buttonMode = true;
                        imgMc.removeEventListener(MouseEvent.CLICK, onImageClicked);
                        imgMc.addEventListener(MouseEvent.CLICK, onImageClicked);
                } catch (err:Error) {
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD"));
            private function onImageClicked(evt:MouseEvent):void {
                trace("Image Attrs:"+imgObject.URL +" Target "+imgObject.Target);
            private function onImgLoadProgress(Evt:ProgressEvent):void {
                if (Evt.bytesLoaded>0) {
                    loaded = Math.floor((Evt.bytesLoaded*100)/Evt.bytesTotal);
                    dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_PROC",loaded));
            private function onImageLoadFailed(Evt:IOErrorEvent):void {
                trace("Image Loading Failed");
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_FAIL"));
    Here I am loading some images using the above class in a for loop, like
                for (var i=0; i < 3; i++) {
                    //imgLoader=new ImageLoader;
                    imgLoader.addEventListener("CustomEvent.ON_IMGE_LOAD",onImageLoad);
                    var target:MovieClip=videolist_mc["list" + mcCount + "_mc"];
                    target.list_mc.visible=false;
                    var imgObj:Object=new Object;
                    imgObj.FilePath=list[i].Thumbnail;
                    imgObj.Url=list[i].Url;
                    imgObj.Target=list[i].Target;
                    target.list_mc.urlObj=new Object  ;
                    target.list_mc.urlObj=imgObj;
                    imgLoader.loadImage(target.list_mc.imgholder_mc,imgObj);
                    target.list_mc.lable_txt.htmlText="<b>" + list[i].Label + "</b>";
                    target.list_mc.imgholder_mc.buttonMode=true;
                    target.list_mc.imgholder_mc.addEventListener(MouseEvent.CLICK,onItemPressed);
                    mcCount++;
    In this case, the ImageLoader.as works only on the last movie clip from the for loop. For example, if i am trying to load three image in three movie clips namely img_mc1,img_mc2 and img_mc3 using the for loop and ImageLoader.as, I am getting the image loaded in the third movie clip only img_mc.
    See at the same time, If i uncomment onething in the for loop that is
    //imgLoader=new ImageLoader;         
    its working like a charm. But I know creating class objects in a for loop is not a good idea and also its causes some other problems in my application.
    So, help to get rid out of this problem.
    Thanks
    -Varun

    package com.project.utils{
        import com.project.*;
        import com.project.utils.*;
        import flash.events.EventDispatcher;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import flash.display.Loader;
        import flash.events.IOErrorEvent;
        import flash.net.URLLoader;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.display.Bitmap;
        public class ImageLoader extends EventDispatcher {
            public var imgloader:Loader;
            public var imgMc:MovieClip;
            public var imgObject:Object;
            public var loaded:Number;
            public function ImageLoader():void {
    // better add you movieclip to the stage if you want to view anything added to it.
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
            public function loadImage(filepath:String):void {
                imgloader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoad);
                imgloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onImgLoadPr ogress);
                imgloader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,onImageLoadF ailed);
                imgloader.load(new URLRequest(filepath));
            private function onImgLoad(Evt:Event):void {
                var image:Bitmap = Bitmap(Evt.target.content);
                try {
                    imgMc.removeChildAt(0);
                } catch (error:Error) {
                imgMc.addChild(image);
                try {
                    if (imgObject.URL != undefined) {
                        imgMc.buttonMode = true;
                        imgMc.removeEventListener(MouseEvent.CLICK, onImageClicked);
                        imgMc.addEventListener(MouseEvent.CLICK, onImageClicked);
                } catch (err:Error) {
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD"));
            private function onImageClicked(evt:MouseEvent):void {
                trace("Image Attrs:"+imgObject.URL +" Target "+imgObject.Target);
            private function onImgLoadProgress(Evt:ProgressEvent):void {
                if (Evt.bytesLoaded>0) {
                    loaded = Math.floor((Evt.bytesLoaded*100)/Evt.bytesTotal);
                    dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_PROC",loaded));
            private function onImageLoadFailed(Evt:IOErrorEvent):void {
                trace("Image Loading Failed");
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_FAIL"));
    Here I am loading some images using the above class in a for loop, like
                for (var i=0; i < 3; i++) {
                    var imgLoader:ImageLoader=new ImageLoader();
                    imgLoader.addEventListener("CustomEvent.ON_IMGE_LOAD",onImageLoad);
                    var target:MovieClip=videolist_mc["list" + mcCount + "_mc"];
                    target.list_mc.visible=false;
                    var imgObj:Object=new Object;
                    imgObj.FilePath=list[i].Thumbnail;
                    imgObj.Url=list[i].Url;
                    imgObj.Target=list[i].Target;
                    target.list_mc.urlObj=new Object  ;
                    target.list_mc.urlObj=imgObj;
                    imgLoader.loadImage(pass the image file's path/name);
                    target.list_mc.lable_txt.htmlText="<b>" + list[i].Label + "</b>";
                    target.list_mc.imgholder_mc.buttonMode=true;
                    target.list_mc.imgholder_mc.addEventListener(MouseEvent.CLICK,onItemPressed);
                    mcCount++;

  • I can't view multiple images in tabbed panels in photoshop CC (do not have this problem in PS5 or 6)

    I can't set up multiple images in tabbed panels in photoshop CC (do not have this problem in PS5 or 6). Has anyone had this problem with CC and if so do they know the fix?

    I just discovered something really weird.  If I open the images in
    photoshop (and the tabs are not showing) and then open another window on
    top of photoshop (for example word or safari) , then the images and tabs
    show in the photoshop window.  But if I move Pshop to the front screen then
    the tabs disappear!

  • Multiple image upload with save to database problem

    I am developing some backend work for a client, and we recently used the Multiple image upload with save to database wizard without a problem. A few days later, we noticed that we could only upload a single file at a time - it seems that the coding is no longer able to access the flash part of this and is using the javasript function instead. I know the web hosting company has made some changes on the server, and I did some reearch and it seems that  there could be an issue with Flash 10, but has anyone else experienced anything like this? Any help is greatly appreciated.
    Thanks.
    Jeremy

    Thank you for the responses. I have already updated awhile ago, so I am wondering what happened. Not sure if during the server update, some files were replaced (unless I totally forgot to update to 1.0.1 on this site). So I reinstalled 1.0.1, deleted the includes folder from the server and uploaded my includes folder and it now works again.
    Again, thanks for the help.
    Jeremy

  • Remove adjustment from multiple images?

    I have multiple images where I used Sharpen instead of Edge Sharpen. I know I can Lift & Stamp the Edge Sharpen adjustment to multiple images but I can't seem to find a way to remove the Sharpen adjustment from all of them first. Is there a way to accomplish this? Thanks

    I can add the other keyword using your techniqe, but how do I get rid of the wrong keyword without interfering with the other keywords I have already set for the images?
    Keywords are metadata, not adjustments.
    If you want to add or remove keywords to multiple images, without interfering with the keywords that are already set, I'd suggest to configurekeyword sets and to use the keyword controls:
    For example, after designing a keyword set"Himmel" (sky) I can add or remove one of the keywords for all selected images  by simply pressing a button in the keywords panel or using a key combination: for example ⌥6  to add the keyword "Halo" to all images, ⇧⌥6 to remove it from all currently selected images.
    But the question is, how to remove one adjustment from multiple images, and that seems to be behaving buggy in Aperture 3.4.1, at least on my system: If I try to add an adjustment to (or remove from)  multiple images, only the primary selection will be modified - and yes "Primary only is disabled ).
    For example: Trying to add "Sepia Tone" to four images: I see the same on two MBPs and on my iMac with Aperture 3.4.1.
    Regards
    Léonie

  • I am having a problem when i open a new tab with multiple images. If there is more than five or six images they won't all open.

    I open emails with multiple images. The new version is having a problem opening a tab with more than maybe 6 or 7 images. Older versions sometimes had the same problem but the unopened images appeared on the page as a small blank box that you could try to reload. Not anymore. Now you have to reload the whole tab. Sometimes this works other times it doesn't.

    You seem to be using a beta version. Maybe go back to a regular release and wait for V. 30 to become a regular release, and maybe whatever bug it is will be fixed.

  • Adjust white balance for multiple images at once?

    Is this possible to adjust the white balance for multiple images at the same time?
    Or adjust the exposure for that matter?

    Of course, this is similar to the question you asked in this thread:
    http://discussions.apple.com/message.jspa?messageID=3964192#3964192
    except use White Balance instead of Exposure. For others who might be wondering the same thing:
    1) Set the White Balance for one image.
    2) Select all of the images you want to copy the White Balance to.
    3) Type "O" to initiate the Lift & Stamp HUD
    4) Click on the image with the White Balance you want to copy with the with the L&S up arrow.
    5) In the L&S HUD uncheck all the checkboxes except Adjustments.
    6) Click on the disclosure triangle to the left of Adjustments. If there are other adjustment settings besides White Balance listed, select them and delete them with the delete key.
    7) Once all you have is Adjustments White Balance in the L&S HUD, then click the "Stamp Selected Images" button in the L&S HUD.
    -Karen

  • Problem Rating / Deleting Multiple Images

    I have a Problem Rating / Deleting Multiple Images at the same time. For the last 2 weeks I have been unable to select a group of images and rate them all - I have to select images indiviually for the rating to work. This also is the case when trying to delete images.
    Anyone know if this is a bug?

    Hit 'S' which toggles 'Primary Only' mode - this swaps between applying ratings,deletions to multiple images or just the one with the thicker selection border.
    Ian

  • Copy adjustment to multiple images

    Simple question, anyone figure out how to copy an adjustment from one image to a group of images.
    I shoot in RAW so all my images need white balance applied to them, I set the one balance on one image,  and found Copy adjustment.  Now I want to copy this to the next 1000 pictures, all I can seem to do is do it one by one. Not good when you have a 1000 pictures to do.  I see no way to select multiple images when doing edits. And when not in "Edit" mode, the paste Adjustment does not work.
    Robert
    P.S.  -- All I can say about Photos is *** was apple thinking putting out this POS application.  They had 2 good apps, a little long in the tooth, and in need of a major update.  But to get rid of those and give us Photos, I am ashamed for the software engineers that had to release this POS app.

    Ya, can do that, but trying to do that for 1000 images, I would end up throwing the whole computer out the window.
    It is a pity, that the lifting and stamping of adjustments has been implemented in this silly, restrictive way. 
    Why not implement it, as it is in Aperture - a nice Lift&Stamp tool, that lets us copy metadata, titles, captions, keywords, and selected groups of adjustments to all selected photos?
    You may want to write a feature request to Apple instead of smashing your Mac.  The feedback form for Photos is here:  Apple - Photos - Feedback

  • Problem downloading multiple images in bytearray, Help !

    Hi Everyone,
    I m trying to download multiple images on my mobile as a part of my application.
    On server side I have used System.arraycopy to merge arrays..
    What I did on server side is as follows:
    byte[] seperator={'%'};
    totalImageArray=image1+seperator+image2
    Please note everything is in bytearray.
    Now on client side I m not able to extract two images seperately i.e. bytes before seperator and after seperator.
    how do i do byte to byte comparison ?
    Please guide me as to how I should do this..tips links snippet...??
    Message was edited by:
    siddhsdesai

    Wht dont you send images seperate...
    For example first write the size of first image as bytes and than write the first image. Then write the size of second image as bytes and than write the second image.
    In the client side first read the first number and then read as many as that bytes then create first image. Then read the second number and then read as many as that bytes then create second image.
    Server Side...
    DataOutputStream toClient = new DataOutputStream (....);
    toClient.writeInt(...); //send the sizeof first image as bytes
    toClient.write(...);  //send the first image as byte array
    toClient.writeInt(...); //send the sizeof second image as bytes
    toClient.write(...);  //send the first second as byte array
    toClient.flush();Client Side...
    DataInputStream fromServer= new DataInputStream (....);
    int firstsize=fromServer.readInt(); //read the sizeof first image as bytes
    byte[] image1data=new byte[firstsize]; //image1 buffer
    fromServer.readFully(image1data);  //read the first image as byte array
    int secondsize=fromServer.readInt(); //read the sizeof second image as bytes
    byte[] image2data=new byte[secondsize]; //image2 buffer
    fromServer.readFully(image2data);  //read the second image as byte array

  • Is there any way to adjust multiple images?

    i don't see any saves settings options and selecting multiple items while making adjustments does nothing. can you really not apply edits concurrently?

    Howdy,
    Ollie Larking wrote:
    "I'm working with hundreds sometimes thousands of images for use in timelapses shot on my dslr. I want to lift changes made to one image to all the others, at the moment im clicking on each one, this is very tedious and not what computers are desgined for."
    It sounds like you have Primary Only selected at the bottom on the Control Bar in Layout Rating & Keywords mode. Deselect Primary Only. You can tell that (keyboard shortcut S) Primary Only is selected with it is darker than the other buttons. It should NOT be dark if you are Stamping multiple images.
    love & peace,
    victor

  • Multiple image upload with save to database wizard problem

    hi,
    i need to upload multiple images (6) in a table called pictures. i will need the names stored in the database and the files uploaded on the server. since i am new to dreamweaver i can not figure out on how to make this work.
    the multiple image upload wizard uploads the images fine and creates a subfolder with the right id but i have no file names in the database at this point. i tried the multiple image upload with save to database wizard but i only get one upload button. it worked fine with one image but i need 6 pics uploaded. the i tried to first upload the pictures with the multiple image upload wizard and use the update wizard to add the names afterwards but that did not work either. hmm. would be great if someone could help me out.
    thanks, jan

    Thank you for the responses. I have already updated awhile ago, so I am wondering what happened. Not sure if during the server update, some files were replaced (unless I totally forgot to update to 1.0.1 on this site). So I reinstalled 1.0.1, deleted the includes folder from the server and uploaded my includes folder and it now works again.
    Again, thanks for the help.
    Jeremy

Maybe you are looking for