Random develop preset applied on undo operation

Anyone else with random presets being applied on undo?  I've encountered it a few times, and it's usually one of the following scenarios:
a)  After some editing (say half hour over multiple images), an undo (does not matter what the undo is on, could be crop) results in a random preset applied.  The whole "undo stack", if it's tracked as such internally is messed up from this point on. 
b) Bulk changes to metadata edit capture time.  For example, select 700 out of 5000 images.  Edit capture time (set time) on one and the other 699 updates as well.  Do something else, like select a 1000, set a color.  Now go back and select the 700, "revert capture time" (say you realized the changed time was not correct).  A status bar goes by quickly.  Next thing I see are thumbnails changing color, turns out all of them had  a random (but same) preset applied.  "Undo stack" at this point is also messed up.
LR5 Win7 x64.  Case (a) also happened with LR4 albeit less frequently.
So, anyone else with random presets applied or messed up undos?

Anyone else with random presets being applied on undo?  I've encountered it a few times, and it's usually one of the following scenarios:
a)  After some editing (say half hour over multiple images), an undo (does not matter what the undo is on, could be crop) results in a random preset applied.  The whole "undo stack", if it's tracked as such internally is messed up from this point on. 
b) Bulk changes to metadata edit capture time.  For example, select 700 out of 5000 images.  Edit capture time (set time) on one and the other 699 updates as well.  Do something else, like select a 1000, set a color.  Now go back and select the 700, "revert capture time" (say you realized the changed time was not correct).  A status bar goes by quickly.  Next thing I see are thumbnails changing color, turns out all of them had  a random (but same) preset applied.  "Undo stack" at this point is also messed up.
LR5 Win7 x64.  Case (a) also happened with LR4 albeit less frequently.
So, anyone else with random presets applied or messed up undos?

Similar Messages

  • Trouble moving Develop Presets to new Vista machine

    I have moved my library from an XP machine to a Vista machine, and am losing a lot of work. What I think is happening is that my images are "detached" from a Preset.
    Many of my images have a Develop Preset applied upon import. So the first step in the edit list is Import/XXXX Preset.
    I have moved the images and the catalog to the new machine. The preview image looks right, but as soon as I do something to trigger a refresh, the image turns red and loses its rotation. It seems that it is applying all of the steps, except the first one. I am guessing it cannot "find" the preset to reapply it.
    I have moved the Presets to the corresponding folder, but b/c Vista renamed somethings, it is not the same path to get to the Preset.
    In WinXP:
    C:\Documents and settings\UserName\Application Data\Adobe\Lightroom\Develop Presets
    In Vista:
    C:\Users\UserName\AppData\Roaming\Adobe\Lightroom\Develop Presets
    Maybe I will create a folder in Vista with the XP Path name to fake it out?
    I can probably go back to my original machine and try some things, but it will be a lot of work. My edits were not saved to XMP, the edits are in teh LR database.
    It's not a problem I expect can be solved here, but if anyone has idea, let me know.
    Rob.

    I know... it is difficult, because there are a lot of variables.
    New point (and probably key) -- The ones that I am having trouble with are RAW+JPG and I just realized that in the new installation, even thought both RAW and JPG files are present, the JPGs are being displayed. So the JPGs are getting all of the edit steps that the NEFs should be getting.
    I just caught that now, not sure what I will do next.

  • I'm using Lightroom cc, I'm trying to create a develop preset. I'm making changes to one photo that I want to apply to many other photos, one of the changes is to blur the background using the adjustment brush. When I am blurring I am going over the photo

    I'm using Lightroom cc, I'm trying to create a develop preset. I'm making changes to one photo that I want to apply to many other photos, one of the changes is to blur the background using the adjustment brush. When I am blurring I am going over the photo several times, when I go to create the preset the adjustment brush is not an option to check. How do I add the adjustment brush to the develop presets. Thanks Ron.

    The adjustment brush cannot be added to a develop preset.
    If you can replace the adjustment brush with a gradient filter or radial filter, you can add those to a dev preset.
    If a gradient filter or radial filter is not an option for you, you can at least create an adjustment preset to remember your brush settings.

  • All of my photos are displayed as BW because somehow I've saved a quick develop preset and it saves as BW.  This is for all of my photos.  I can individually undo them but need help in how to get rid of the preset so it goes to Default. thanks

    All of my photos are displayed as BW because somehow I've saved a quick develop preset and it saves as BW.  This is for all of my photos.  I can individually undo them but need help in how to get rid of the preset so all photos goes to Default or as shot. thanks

    Go to the develop module and highlight all of the images in the filmstrip at the bottom of the screen. Then activate Auto-sync and click on the Reset button. That should reset all of the images to your camera default settings.

  • Use of Vector in undo operation ?

    Hello,
    I am developing simple paint program. And want to use undo redo operation for drawing in drawing canvas. Actually I have done it with the help of Vector. But the problem is that it is not working properly. The first drawn shape is not removing with this operation and also the problem is that When i am using CTRL+Z for undoing last drawing. It is not removing last drawn shape with first undo operation. Let me know that what is the exact problem in my coding. I am not fully java programmer. So please tell me what to do for that. I want to draw n level of drawing on drawing canvas and also want to perform n level (first drawn shape) undo actions. And also want to know how to make redo button for same coding only use of Vector or ArrayList.
    My code is here:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import java.util.*;
    public class PaintUndo extends JFrame
         Display pan = new Display();
    public PaintUndo()
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         getContentPane().add("Center",pan);
           setBounds(1,1,600,400);
         JMenuBar  menu = new JMenuBar();;
         JMenu     submenu;
         JMenuItem item, redo;
         submenu = new JMenu("Edit");     
         item = new JMenuItem("UnDo");
        item.setMnemonic(KeyEvent.VK_Z);
            item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Z, ActionEvent.CTRL_MASK));
         item.addActionListener((ActionListener)pan);
         submenu.add(item);   
         menu.add(submenu);
         getContentPane().add("North",menu);
         setVisible(true);
    public class Display extends JComponent implements MouseMotionListener, MouseListener, ActionListener
         Vector   saves = new Vector();
         BufferedImage image = null;
         Graphics ig;
         Graphics pg;
         Point point;
        int x1=0;
        int y1=0;
    public Display()
         setBackground(Color.pink);
         addMouseMotionListener(this);
        addMouseListener(this);
    public void paintComponent(Graphics g)
         if (image == null)
              image = (BufferedImage) createImage(800,600);
              ig = image.createGraphics();
              ig.setColor(Color.white);
              ig.fillRect(0,0,800,600);
              ig.setColor(Color.blue);
              pg = getGraphics();
              pg.setColor(Color.blue);
         g.drawImage(image,0,0,this);
    public void mouseDragged(MouseEvent e)
            int x2 = e.getX(); int y2 = e.getY();
                Graphics gr = image.getGraphics();
                   gr.drawLine(x1, y1, x2, y2);
                repaint();
                x1 = x2; y1 = y2;
    public void mouseMoved(MouseEvent e)
    public void actionPerformed(ActionEvent a)
         if (a.getActionCommand().equals("UnDo") && saves.size() > 0)
              ig.drawImage((Image)saves.remove(saves.size()-1),0,0,null);
              repaint();
            public void mouseClicked(MouseEvent e) {
                System.out.println("mouse clicked....");
            public void mousePressed(MouseEvent e) {
                System.out.println("mouse pressed....");
                x1 = e.getX();
                   y1 = e.getY();
            public void mouseReleased(MouseEvent e) {
                System.out.println("mouse released....");
               Image tmg = createImage(800,600);
              Graphics tg = tmg.getGraphics();
              tg.drawImage(image,0,0,null);
              saves.add(tmg);
            public void mouseEntered(MouseEvent e) {
            public void mouseExited(MouseEvent e) {
    public static void main (String[] args)
         new PaintUndo();
    }This is complete code for undoing.
    Any help will be appreciated.
    Thanks in advance.
    Manveer

    The example code is set up for a protocol completely different than what you are doing, so you can't simply copy it and hope it works.  The example code expects that the other side will send a 4-byte header containing the number of data bytes that follow, then send the data.  The example code first reads that 4-byte header, casts it to an integer, and reads that number of bytes (the second Bluetooth Read).
    When you run this with your device, the first read gets your 4 bytes - FF FF 22 33 - and converts that to an integer.  0xFFFF2233 is decimal 4294910515.  So you then try to read this huge number of bytes and you get an error - looks like error 1, an input parameter is invalid, because you can't read 4GB at once.  You can probably get your code working with a single Bluetooth Read, with a 1 second timeout (because you have a 1 second delay between packets).  You'll want to wire in some number of bytes to read that is at least the size of the largest packet you ever expect, but don't use a ridiculously huge number that generates an error.  LabVIEW will return as many bytes as are available when the timeout expires, even if it isn't as many as you asked to read (you might also get a timeout error, though, which you'll need to clear).  You can then do whatever you need to do with that data - search for FF FF, typecast anything after that to array of U16, display it. 
    The output of the Bluetooth Read is a string, but it's not text - it's exactly the bytes that were sent.  The Y with the dots over it is the way ASCII 255 (0xFF) displays (at least in that font).  ASCII 34 (0x22) is ", and ASCII 51 (0x33) is the number 3.

  • How to apply different Logical operations to N.of Signals

    Hello all,
    Please help me if anyone have idea about this.
    I have “N” number of signals. I want to apply different Logical operations for this.
    For Example:
          (((SigA >= 30 && SigB <=55) || (SigC = 42)) && (SigD > 45))
    ((((SigD >= 89.25 && SigF <=55.568) ||(SigG = 156.89)) && (SigA >= 45)) || ((SigF – Sig A) >25))
    Here Conditions will change every time. User can input different conditions (like Excel calculations). I need to check signals as per these type of conditions. Is there is any tool kits available in LabVIEW / we need to develop?
    Currently I’m thinking about string manipulations to extract the each condition . Once first condition is finished then check this results with next conditions (so on..)
    Munna

    Hi GerdW,
    After long time again I stated doing this task. Could you please help me in this.
    As per my snippet, at 1st making array based on given String. From that string I need to check where open & closed brackets are coming to do logical operations.
    For Example: (2 OR ((1 AND 2) OR 3))
    Index
    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    String
    2
    O
    R
    1
    A
    N
    D
    2
    O
    R
    3
    Please give me any idea/sample VI for the same.
    Here, 1,2 & 3 are Indices of Boolean 2D Array.
    Munna

  • Develop presets: "Unavailable Preset"

    When I enable the library filter Develop Presets I see three instances of "Unavailable Preset" with counts of 1, 23, and 323. In detail these are
    (1) no presets at all, just a Clarity adjust. Click on import, then back on the Clarity --> applies correctly. Then when I refer back to the Develop Presets filter the count has changed from one to zero.
    (23) these images all reference a long-used and active preset that is just Clarity + Vibrance. Clicking on the image history shows that the final image is correct, and the before/after preset results are correct. But after cross-checking several images this way the count has now been reduced from 23 to xxxxxxxxxx
    (323) these images all reference a preset created today that I accidentally mis-applied to those images. (I'll refer to the mis-applied preset as GOOFY -- more on this below). Sampling some of these 323 images I see that the GOOFY preset is correctly applied. When I click on the previous history step, then GOOFY the "Unavailable Preset" count is decremented and a new "Custom" preset is incremented. I have never seen "Custom" preset before today.
    Now, the story of the GOOFY preset. When I could find nothing in the documentation, forum or web, I decided to try disabling the unwanted preset by these steps at the Mac OS Finder level:
    - duplicate GOOFY to GOOFY-2
    - delete GOOFY file (I hoped LR3 would remove the references to the deleted GOOFY)
    - in grid view mass-apply GOOFY-2 to the correct images
    - quit, restart LR3
    I've forgotten exactly what happened next, but for sure LR3 did not remove the non-existant preset links. For some reason I decided to rename the duplicated GOOFY-2 back to GOOFY. Now the images that correctly referenced GOOFY have two references to presets named GOOFY the oldest one is a NO-OP (does nothing), the latest one works as expected.
    Any advice would be appreciated:
    ** how to mass-delete an unwanted preset reference from a selection of images?
    ** how to clean up the above "Unavailable Preset" errors?

    When a preset is created, it stores the current level of the chosen parameters at the time of creation; in the example below, the preset which will be named CurrentPreset1 will store the current levels applied to the selected photo at the time the preset was created, and in this case will only store values corresponding to Color, Lens Corrections, and Process version.
    To update the values recorded in a preset, the various levels must be changed on the currently selected photo and then the "Update with current settings" must be selected on the preset to update. The "Update with current settings" therefore updates the preset itself with new values corresponding to the values set in the current photo and has nothing to do with how it was applied to photos in the past. A preset is not related in any way to photos on which it is applied; a preset simply applies the set values recorded in the preset on the selected photo as if these same values would be manually entered for the selected photo.

  • Presets used for Printing / Relative Develop Presets

    Hi
    I am still not able to produce accurate colors when printing on my HP Color Laserjet CP3505X (the printer does not allow me to disable color management, and yes, I am using a calibrated monitor). Even with the sRGB profiles mentioned here (http://forums.adobe.com/message/2165085#2165085) and printer settings on sRGB I still have a color shift in my prints.
    But I could (by experimenting) find out, what corrections have to be applied to the images for them to come out right in printing (e.g. Temperature +600, Tint +15).
    Is there a way to have such a correction applied while printing, like a preset used only when printing?
    Or, if not, is there a way to define a develop preset which acts relative (cumulative), meaning that I only code the difference of what I want to be added to the rest of the development settings? Such a preset then could be applied as the last action before printing.
    Either method would partially solve my problem.
    Beat Gossweiler
    Switzerland

    Jao,
    Jao vdL wrote:
     Not using Lightroom's controls. What you describe is exactly what a printer profile is supposed to do. 
    I know that this is the purpose of a printer profile. What I would need is a correction (preset) on top of the profile used.
    II. Create a real printer profile. You can either do this using a higher-end calibrator or using one of several services. Usually you download a file. Print it. Mail it to them and they send you back a profile that will work for the combination of ink/paper/printing settings that you used. See for example:
    http://www.inkjetart.com/custom_profiles/
    Or this websearch.
    Since I cannot switch off color management with my printer, I am using the sRGB profile you recommended in this post of yours and let the printer work with sRGB.
    I even would be able to create a printer profile myself (I own a Spyder3Print™ to calibrate a printer). But this involves being able to disable color management in the printer (driver) completely, which seems impossible with the CP3505X .
    So what I would need is a combination of the sRGB profile I use, corrected by lets say 600K temperature and 15 ticks tint. But I have no idea how to get there.
    Beat Gossweiler
    Switzerland

  • Doubled list of Develop Presets in Import dialog?

    Hi all, I'm running a week-old trial copy of LR3.3 on Windows, and I seem to have a doubled set of Develop Presets in the Import dialog's 'Apply During Import' dropdown menu. However, I just get the single list in the Presets panel of the Develop module.
    More specifically, in the Import dropdown menu, I get:
    An alphabetical listing of all built-in presets (with no user presets), followed by another alphabetical listing of all built-in presets, this time with the user presets.
    So for example, if there are 20 built-in presets and 1 user preset, my Import dialog dropdown has 41 lines.
    Any suggestions?

    No, factory presets are embedded inside Lightroom and cannot be removed.
    Well, actually, they can, but this is undocumented and you'll have to do it after each update.
    http://lightroom-blog.com/2010/09/getting-rid-of-default-lightroom-develop-presets.html

  • Where does LR3 install develop presets?

    I ask this question because, on my system, the answer is not obvious:
    I have 8 catalogs. Everyone of them is configured to store presets within the catalog. When I examine the contents of the presets folders (different for every catalog) I find that only 1 catalog out of the 8 contains any items in its Develop Presets folder (other than the folder 'User Presets') and these develop presets appear to be the default ones that are shipped and installed with the product. However, all 8 of the catalogs list these default develop presets under the group 'Lightroom Presets' in the left hand panel in Develop mode.
    The 'global' lightroom develop presets location, at ~user\AppData\Roaming\Adobe\Lightroom\Develop Presets\Lightroom Presets is empty. However the parent folder (Develop Presets) does contain folders for the 3 volumes of the free OnOne PerfectPresets as well as a User Presets folder (not empty). But, those OnOne presets are available only in 1 of the 8 catalogs, and not the same catalog as that referred to above.
    How do catalogs, which do not have the Lightroom default develop presets present, find them?
    Why can't catalogs find the free OnOne presets which are installed at the architected system (or global) location or any of the User Presets at this location?
    Finally, I do have a 'spare' Lightroom Settings folder which does not appear to be connected to any catalog: when I rename it to a garbage name I can find no immediate problem in any of my 8 catalogs. Is it safe to delete this spare Lightroom Settings folder?

    XEyedBear wrote:
    I have 8 catalogs. Everyone of them is configured to store presets within the catalog.
    This is where I think you are misunderstanding how the "Store presets with catalog" option works. For a start, you cannot configure an individual catalog to use this option.....it is a global Lightroom preference which applies to any and every catalog on that specific system. Once you have slected that option, the effect is that Lightroom will create a "Lightroom Settings" folder in the same folder as the catalog.....so if you have 8 catalogs, and they're all in their own individual folder, you'll eventually end up with 8 x "Lightroom Settings" folders. Keep all 8 catalogs (and preview sub-folders) in the one folder, and you'll get away with just one "Lightroom Settings" folder.
    A couple of other things to understand about this option:
    1. On initial creation, the "Lightroom Settings" folder contains only a subset of the main settings folders contained at the default user appdata location....and all the sub-folders are initially empty. Lightroom does NOT copy any presets (Lightroom's own or your User Presets) to the equivalent sub-folder in "Lightroom Settings".
    2. Furthermore, from the second that you select that option, Lightroom will no longer look at the default location for any User Presets that you had.....so the immediate effect is that the User Presets 'disappear' from the Develop Module (they haven't really been deleted, it's just that Lightroom no longer sees them).
    3. When you create a new User Preset after setting that option, it will be stored in the appropriate sub-folder within the "Lightroom Settings" which is specific to the catalog in use at the time, but would not be copied to any other "Lightroom Settings" folders. Easy in that circumstance to end up with each catalog having different user presets available to it, and easy to see maybe why the OnOne presets are only available to one catalog.
    4. And not all Lightroom settings are 'switched' to the "Lightroom Settings" folder, some remain in the default location.
    To be honest, unless you have a really good reason to store different presets with different catalogs, I think you're making a big mistake in selecting the 'Store Presets with catalog' option in your multiple catalog situation. I did a write-up on this subject not so long ago for the folks over at Victoria's Lightroom Forums, you might find it worth a read:
    http://www.lightroomforums.net/showthread.php?14169-What-is-the-purpose-of-the-quot-Store- Presets-with-Catalog-quot-option
    Hope this helps....

  • LR3/LR4 Develop Presets Behavior

    I'm a little bit confused about LR3 Develop Presets that do not include the Process Version information when applied to an image that is in PV2012. Let's assume a Develop Preset for Clarity +25. Here are the steps and the results:
    1. Image PV2012 - apply Preset - Clarity slider stays on 0 and it looks like Clarity has not been applied to the image
    2. Change image to PV2010 in Camera Calibration - Clarity slider changes to +25 - Clarity is applied
    3. Change image back to PV2012 - Clarity slider stays at +25 and the rest of the new PV2012 settings are applied as well
    So, is this the correct behavior? Shouldn't the Preset alrady be applied in step 1 ?
    What am I missing here?
    If the Preset contains the PV information everyhting works "as designed" with the sliderers reverting back to PV2010 if applied to a PV2012 image.
    Is the lesson here to always include PV information into any Develop Preset?
    Andre

    I can follow you technically. But from a user perspectice this is getting difficult to manage. How do I know which preset will work and which doesn't? Right now it seems, its trial and error. And if I switch between PV versions the setting will be applied but it won't be the same because Clarity2012 is different. Don't get me wrong, it is absolutely fine to improve image processing, but it would be nice to make these changes more obvious to the end-user who might not be so technically inclined. I could think of a little warning saying: You're trying to apply a preset setting that does not work in PV2012, or something along this line. It would be even nicer if Adobe would provide something like an Preset upgrade utility, which would help users to migrate to the new PV.
    I just try to figure this out so that I know what to tell my students at the community college where I'm teaching LR and where I'll be facing these same questions.

  • Develop presets have different effects after saving file as either .tif or .psd

    When I open a raw .dng file in Photoshop and MAKE NO CHANGES and then save it (either .tif or .psd), the resulting photo appears to be identical to the original raw .dng file. HOWEVER when I then apply development presets (whether my own or Lightroom presets), the presets have a COMPLETELY DIFFERENT effect on the .tif or .psd file than the .dng file. More precisely: the .tif or .psd files have significantly more contrast, saturation and are significantly more exposed. And in fact, despite using the exact same preset, the histograms for each of the pics are different. In addition, the same preset on the .dng file treats colors differently than on the .tif or .psd file. After much experimenting and comparing of each development module and each individual slider, the sliders that seem to behave differently are Brightness, Contrast and Saturation. With each of these sliders, however, the difference in effect is only minimal and should not affect hue, but when applying a preset that affects hue, the actual change in hue is different for the .dng file vs the .tif. or .psd file. All of this even though all of the presets are the same. Whatsmore, applying Auto Tone on the two apparently identical files results in dramatically different affects: the .tif or .psd file is properly corrected, whereas the .dng file has its Brightness decreased and Contrast increased, i.e. the Auto Tone moves the sliders different for the .dng file than for the .tif or .psd file. Is there a solution to this problem?

    I'm one of those who eventually migrated from PS to LR. I used to do a layered TIFF for every selected image. With 17-21MP raw files, that amounted to usually between 180-250MB files in addition to the raw. After completely changing my approach, for 99% of my work now I only work from the raw file, including printing / generating web JPEGS. This was really enabled by having the spotting and local editing at the raw file level. But pretty much no more TIFFs as working / final images, just raws with settings. Obviously different people have different requirements, but it's well worth looking into the switch in approach, even if you still end up using PS / Bridge / ACR.

  • Develop presets: after preset "updated" what happens to all existing references?

    Testing the develop preset "Update with current settings" I've noticed that the existing images referencing the updated preset do not change. If you click the associated history steps before/after then the image updates.
    Is this "correct" or is this a bug? If it is correct, what is the point of "Update with current settings"?
    Related question: what happens to images referencing a preset that one deletes in the preset pane?

    When a preset is created, it stores the current level of the chosen parameters at the time of creation; in the example below, the preset which will be named CurrentPreset1 will store the current levels applied to the selected photo at the time the preset was created, and in this case will only store values corresponding to Color, Lens Corrections, and Process version.
    To update the values recorded in a preset, the various levels must be changed on the currently selected photo and then the "Update with current settings" must be selected on the preset to update. The "Update with current settings" therefore updates the preset itself with new values corresponding to the values set in the current photo and has nothing to do with how it was applied to photos in the past. A preset is not related in any way to photos on which it is applied; a preset simply applies the set values recorded in the preset on the selected photo as if these same values would be manually entered for the selected photo.

  • Develop Preset for Import in LR4.2 (iMac 10.8.2)

    Can any please tell me how to set up a preset on the Import page (there are some there now) that I can use when I import my photos into LR. I am tired of going to Lens Correction in the Develop mod to put the nikon lens in that I used for the shoot. It is always turned off and I would like to have it activated when I import my shots. I know that while in the Develop mod, I can change it for one photo and then use "sync" to have it address all the other photos.  But then it is a pain in the butt. There must be a way of doing it on import and that is the reason I am asking for your help. Either that or else have it recognize the lens that I used automatically.
    Thanks for taking the time to respond.
    Tunney
    Tunney Moriarty
    Ph: Res 519-746-0236
           Cell 519 584-5253

    Hi Tunney,
    I would second JimHess: of course you could employ a develop preset during Import, but then all images would be labelled as having develop adjustments. And you do not see where you have invested develop work already.
    I consider the Adobe defaults just as a starting suggestion, which may or may not apply to my taste per camera.
    So I would rather tweak the default develop settings: just make sure that you include only stuff that virtually applies to ALL of your images.
    I, too, have included automatic lens correction and defringe edges.
    First decide in your catalog settings if you want the develop defaults specific per camera type or serial number or even ISO ( a nightmare if you ever use auto-ISO).
    Then select a sample image, goto develop module and set only the stuff that should apply to all imported images. Then save them as new default settings.
    You do nit change anything during import then.
    If you hit the Reset button it will always revert to these defaults.
    Cornelia

  • Save crop in develop presets

    I've been using LR's auto-import feature for tethered capture. It would be extremely helpful to be able to save the current crop (exact location - not just ratio) to a develop preset that I can than set to be applied to all auto-imported images. I am often shooting to fit a specific layout and have to resort to sync and/or previous to get things where I need them to be. Interestingly, I find that sometimes the crop will carry over to new images, but it isn't consistent or predictable.

    Add me to the list.
    Using the 'original' size for a D300 is not what I want since the frame ratio 1.5056 rather than 1.5. This can cause some confusion later when printing. There should be a way to create a cropping preset or, lacking that capability make the crop ration 'sticky' until it is changed again.

Maybe you are looking for

  • Complete removal of iTunes and QuickTime

    If I completely remove iTunes and QuickTime, will all the songs from my music library in iTunes be deleted too? Will they be there when I install iTunes again?   Windows XP Pro  

  • Google maps in israel?

    i've had the software upgrape fo a while now, and knew that the maps app didn't show the streets in israel, but i thought that it just didnt have the streets for many small countries. but i was looking a little closer today and realized that there it

  • "Enter the document number" in BAPI_SALESORDER_CHANGE.

    Hi, I've got the following error: Call of BAPI_SALESORDER_CHANGE gives us an error V1 045 "Enter the document number". We are sure the call is proper (document number is send). The errors occurs in function module SD_SALES_DOCUMENT_READ in lines 60 a

  • Prin preview of item text before saving PO

    Hello, when I create a PO I can use the print preview of the PO before actually creating/saving the PO. However if I do this I can't see the item text. The item text is only visible in the print preview after the PO is saved. Do you know if it is pos

  • Show bottom border in First page and top border in next page for rectangle in SSRS

    Hi, I have rectangle  inside that Text box and tablix are there, where the text data spans to multi pages (2 or 3 Pages) , so the Bottom border in first Page will go off and in other pages both bottom and top border will be not visible, and where the