Adjustments on import ACR4.4 question

I should mention up front that I'm still using LR1.4, so if the answer to this is "wait for the update or revert to 1.3", that's OK.
I don't know if it's something I configured inadvertently or if this is a bug in LR, hopefully the former, but when I import raw from my NIkon D300, the initial preview on the screen as it comes in is a close match to the preview in the camera (i.e. looks great), but then LR applies an update that turns the image quite dark and frankly, ugly. LR indicates in Develop that it is using ACR4.4. Is there anything I can check to correct this change effect on import?

There has been very little change since 1.3, so if you're seeing a huge change, you must have something else going on (the ACR 4.4 profiles will only affect color at the ends of the temperature/hue sliders).
Perhaps you are inadvertently applying a develop preset on import, or maybe you've accidentally messed up your Camera RAW defaults. Both would show up as Develop sliders somewhere other than the obvious defaults of zero except for Blacks (5), Brightness (25), Contrast (50), Sharpening Radius (1), Detail (25), and the medium contrast tone curve, IIRC.

Similar Messages

  • ACR Adjustments at Import

    I have a very basic question: how do I "set" ACR to "neutral" so that when I open LR2 and import files, there are no adjustments based on my last set-up. I'd like to start with no adjustments as ACR does in Bridge.  For example: whatever sharpness is applied to my last photo that I processed Iin LR2, the next photo is already subjected to that level of sharpness. I prefer that not to happen.  Any help to what I know is a basic question is appreciated.
    Wm

    Thanks John. I never choose develop settings - so I guess I've been 
    importing with no adjustments - regardless of what the settings 
    indicate(from the prior photo) in the Development panel , right?

  • Import from Camcorder question, what resolution?

    I just bought a Sony HDR-TG1 camcorder, pretty happy with it. I have a question about importing, if I import AVCHD format using 1080 import, it takes up a lot of harddrive space, is there any advantage since I am not going to do a lot of editing, just wanna burn dvds. Thanks Alex

    You need to create a disk image (using disk utility - which is in your Applications/Utilities folder). The disk image must look just like your camera's disk. In particular, it must have ALL the files and folders that are in the directory structure of your camera's hard drive, even if they are empty. Some of these "empty" folders, by being present in the root directory, are how iMovie knows that this is a supported camera.
    Now, look at your Memory Stick in the Finder, and select right-click/GET INFO. This will tell you how much space you have used on your Memory Stick. You will need to create a disk image at least this big.
    Go to disk utility and create a NEW image. Make sure it is read/write. You can use the Custom setting to choose a size large enough for the files on your Memory Stick.
    After you have created the blank disk image, mount the image on your desktop and open it. Open a second finder window and open your camera's memory stick. Select ALL the files and folders on your camera's memory stick, and drag them to the disk image. Now, you should be able to disconnect your camera, and eject the disk image. If you start up iMovie, and then mount the disk image again, iMovie should recognize the disk image as a camera.
    (I recommend using the custom size and creating a blank disk image, then dragging into it. It also works to directly create a disk image of your memory stick. The problem with this method is that you can waste a lot of disk space. For example, I have an 8 GB SDHC card. Lets say I took 4GB of footage, and I want to archive it and import it so I can re-use the card tomorrow. If I use disk utility to create a disk image of my SDHC card, I will have an 8GB disk image with 4GB of empty space. That is why I create a new, custom image of, say, 4.1GB in size.)

  • Importing Java Class Question

    Hello,
    Sorry for such a newbie question and such a long post, I did remember how to do this before but now I can't for the life of me remember. Anyhow, I have a simple question about importing custom-made java classes, from another directory in the windows operating system. I have the classpath set, and also I realize that because the two files below are in the same directory theres no need for an import statement as Java will look for the class in the same directory.
    But I would like to know how the import statement is suppose to look to import a custom made java class from another directory, (assuming of course that I set the correct classpath)
    here's the java class location:
    c:\school\csc365\narcus.java
    //narcus.java
    import java.io.*;
    class narcus implements Comparable
    String firstName = "firstName";
    String lastName = "lastName";
         public narcus()
         firstName = firstName;
         lastName = lastName;
         public narcus(String f)
         firstName = f;
         lastName = lastName;
         public narcus(String f, String l)
         firstName = f;
         lastName = l;
    public String getFirst()
    return "first..";
         public int compareTo(Object e)
         return 1;
    Here's the location of the driver program thats suppose to use the narcus.java class
    c:\school\csc365\test.java
    //test.java
    //import statement? maybe import "c:\\school\\csc365\\*"; ?
    import java.io.*;
    class test
    public static void main(String[] args)
         narcus jim = new narcus();
         System.out.println("omg\n");
         System.out.println(jim.getFirst());
    And also, here is my classpath:
    PATH=c:\school\csc365\;c:\school\
    The classpath also points to the jdk libraries and few other directories but I didn't write that above, as it probably isn't relevant.
    I've tried the following import statements.
    import "c:\\school\csc365\\narcus.java";
    import "narcus.java";
    import "c:\\school\\csc365\\*";
    But I keep getting an error that says:
    test.java:1 <identifier> expected
    Any help is appreciated!

    Hi Folks,
    I am new to this forum, heard that interesting discussions always happens on this forum so immediately registered,don't want to miss any oppurtunity to participate in discussions.
    I have pretty much basic question regarding compiling and exceuting files in different packages.I have the following directory structure
    C:\Projects\WDPROEast\Development\CommonService\Code\Java from where java files stored in different packages as follows:
    com\wdpro\commerce\common\crm\dae\nautilus\adapter directory has java files in com.wdpro.commerce.coomon.crm.dae.nautilus.adapter package.
    com\wdpro\commerce\common\dae\exception has java files with package named com.wdpro.commerce.common.dae.exception.
    com\wdpro\commerce\common\dls\exception has java files with corresponding package name.
    com\wdpro\commerce\common\dto has java files under proper package name.
    com\wdpro\commerce\common\exception has java files with appropriate package name.
    com\wdpro\commerce\common\util has java files with package name. I am starting at Java Directory,want to compile and run file named a.java in com.wdpro.commerce.coomon.crm.dae.nautilus.adapter package with having all other java files on classpath as follows
    so I issued command for compilation as follows C:\Projects\WDPROEast\Development\CommonService\Code\Java>javac com/wdpro/commerce/common/crm/dae/nautilus/ada
    pter/a.java com/wdpro/commerce/common/crm/dae/nautilus/adapter/NautilusServiceUtility.java com/wdp
    ro/commerce/common/crm/dae/nautilus/adapter/URLReader.java com/wdpro/commerce/common/crm/dae/nautilus/adapter/
    b.java com/wdpro/commerce/common/dae/exception/*.java com/wdpro/commerce/common/dto/*.java
    com/wdpro/commerce/common/exception/*.java com/wdpro/commerce/common/util/*.java com/wdpro/commerce/common/dl
    s/exception/*.java It compiled greatly but when I issue command to run a.class file as
    C:\Projects\WDPROEast\Development\CommonService\Code\Java>java com/wdpro/commerce/common/crm/dae/nautilus/adap
    ter/UtilityAccesssit's giving following exception
    Exception in thread "main" java.lang.NoClassDefFoundError: com/wdpro/commerce/common/crm/dae/nautilus/adapter/
    UtilityAccesssbut when I run a.java with the following command
    C:\Projects\WDPROEast\Development\CommonService\Code\Java>java com/wdpro/commerce/common/crm/dae/nautilus/adap
    ter/UtilityAccess com/wdpro/commerce/common/crm/dae/nautilus/adapter/NautilusServiceUtility.java com/wdpro/com
    merce/common/crm/dae/nautilus/adapter/URLReader.java com/wdpro/commerce/common/crm/dae/nautilus/adapter/Nautil
    usAccessUtility.java com/wdpro/commerce/common/dae/exception/*.java com/wdpro/commerce/common/dto/*.java com/w
    dpro/commerce/common/exception/*.java com/wdpro/commerce/common/util/*.java com/wdpro/commerce/common/dls/exce
    ption/*.javaSo my question do I need to add all required java files to path when required class files are under different packages?is it manadatory.
    I hope you understand my question,pass me any comments you may have.
    Thanks alot,
    Anu

  • VERY IMPORTANT FOR LOOP QUESTION

    public class ForTest2 {
         public static void main(String args[]) {
              int i=0, j = 0;
              for (j=0; j < 10; j++) {
                   i++;
                   System.out.println("i is: " + i);
                   System.out.println("j is: " + j);
              System.out.println("Final i is: " + i);
              System.out.println("Final j is: " + j);
    }j ends up being 10. Why? It should only be 9. This is as when j is 10 the for loop fails, so j++ shouldnt happen.

    First, please, please, please stop using all caps. It's extremely annoying.
    Second, don't mark your question as urgent or important. It is 100
    % guaranteed NOT to get you help any faster, and it might just delay you getting help because it's annoying.
    As for your question, you're misunderstanding how the for loop works. j HAS to become 10 for it to end. The loop body executes as long as j < 10. If j didn't become 10, the loop body couldn't terminate, because j<10 would always be true.
    The body is executed, the j++ is executed, then the j<10 is tested.
    int j;
    for (j = 0; j < 10; j++) {
        // body
    // is equivalent to
    int j;
    j = 0;
    while (j < 10) {
        // body
        j++:
    }

  • Importing desired text question.

    I'm new to applescript and I was wondering if anyone had tips on how to fix this problem with this script I was working on.
    If im trying to write a command into terminal it looks something like this.
    activate application "Terminal"
         tell "Terminal"
         do script "sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText 'Text inserted here'"
    end tell
    But what I need to know how to do is something along the lines of this
    set desiredtextQ to display dialog "Please enter your desired text." default answer "Text Here" buttons {"Continue", "Cancel"}
    set desiredtextA to text returned of desiredtextQ
    activate application "Terminal"
         tell "Terminal"
         do script "sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText 'desiredtextA'"
    end tell
    So basicly all I'm trying to do is take the text returned of a question and import it into a scripted terminal command.
    I would be thankful if anyone had any help to share with me.

    First off, avoid scripting Terminal.app. For most purposes, including this one, there is no need and you are far, far better off using AppleScript's do shell script, which can execute a shell command without needing to invoke Terminal.app.
    Therefore, I'd rewrite your first script as:
    do shell script "defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText 'Text inserted here'" with administrator privileges
    Note that I've also nixed the 'sudo' component  in favor of do shell script's '... with administrator privileges'.
    As for the second part of your question, integrating a variable, that's just a matter of concatenating the strings using the & character:
    set desiredtextQ to display dialog "Please enter your desired text." default answer "Text Here" buttons {"Cancel", "Continue"} default button 2
    set desiredtextA to text returned of desiredtextQ
    do shell script "echo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText " & desiredtextA with administrator privileges
    Note that if the text from the dialog includes (or might include) spaces or other shell-unsafe characters you might need to quote the text, like:
    do shell script "echo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText " & quoted form of desiredtextA with administrator privileges

  • Importing projects / sequences question

    I started out my project with the wrong resolution (*sigh*) and I'm now trying to save the day by doing the recommended move - starting a new project with correct settings and importing the original project there.
    But I'm only getting the entire original project sequence as a big block, with no edits or anything available. Is it supposed to be like that? Or is there a way to get all the separate clips, cuts, edits etc when importing?
    Thanks for any help!

    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Importing one table question

    I have a DMP file and I want to import all tables except one (it's a large table). I know I can do that with a parameter file, but my question is, can I.........
    import all but the 1 table (the large one), start the import of that 1 table and have people start using the DB while that one table is importing. This large table does not have critical data they need to access right away so my thought was that I could import everything else first (small amount of data), start the import of the large table and they users could access the DB while that 1 table is importing.
    Due to special circumstances IMP/EXP is their only backup solution (please no lectures on that, I KNOW, I know....., but it is what it is)

    I can't think of anything that would prevent this from working. You just need to make sure that the large table does not have any ref constraints, or other associations with the other tables that may get screwed up while the other users are using the database.
    Dean

  • Import Packages - A Question to All Java-Professionals

    Question:
    I installed the J2SE 1.3.1_02, J2EE 1.3.1_01 and Forte Java CE 3.0. Why I can't use the Packages included in the j2ee.jar located in the \bin directory?
    I can't use the Packages like
    import javax.jms.*;
    import javax.sql.*;
    Why? Please to all Java-Experts. Thank you very much

    sorry this is kinda late, no I dont use forte, I use codewarrior , and I have not used the j2ee.jar but I have used the servlet.jar , activation.jar, and mail.jar . And I simply add a refrence to those files and Codewarrior sets the classpath for me.

  • Importing/Exporting + syncing Questions

    Hi there,
    just a question with regards to Importing/Exporting + syncing .
    First of all, is it possble to sync Yahoo Calendar with iCal, or is there a cool widget/tool that does so in real time?
    Second, I currently have a Mac at work running 10.2.8 and would like to somehow sync to my Mac at home running 10.4.8 without exporting/importing from media devices. The Mac at work is always online running through cable connection to outside world... My Mac at home is connected to a switch and than through adsl modem to outside world... What is the best way to connect the two through the Sharing setup in System Preferences
    thanks

    I'm interested in the same sort of thing. i have a Desktop at home and a laptop on the road. Usually with other files and apps, I just copy the files to my lap top before I leave, but with iCal, I do not know where the 'file' is...?

  • Color Adjustments while importing from Epson P5000

    Hello, I recently upgraded to Aperture 1.5.2. Since doing so, when I import my images from my Epson P5000 portable external hard drive I am having a problem. As soon as all the images are imported in Aperture, one by one each image undergoes automatic adjustments. They become over saturated, develope a color cast (or perhaps a temperature adjustment). This is not a setting in my camera nor do the images look this way on the display on my Epson. Can anyone explain how to turn these adjustments off? Thanks, Phil

    WALTER-MILANO-ITALY wrote:
    May I ask you your help ?
    I use RAW+Jpg in different cameras and I import Both Raw as Master, leaving the originals on an external HD, that is referenced system.
    I am missing something ?? For instance if I take a BW with my EP2 I get a RAW colored and a BW jpeg into Aperture only if I import separate masters.
    If you use your normal 'Both RAW as Master' option, can you Control+Click (right-click)and use the set JPEG to Master option to switch to the Black & White version displayed?
    Probably I am only wasting time shoting BW in camera because you can do it later from RAW with aperture...
    If the JPEG captured what you wanted to see and will work for your purpose, then it is not a waste of time - IMHO.
    I shoot RAW+JPEG also and import 'Both JPEG as Master' because most of the time the JPEG works for what I want.
    Note - RWBoyer has a great site with a lot of information about Aperture here:
    http://photo.rwboyer.com/

  • Inexplicable Auto-Adjustments on Import

    I've looked through my settings and Google, and it appears that my LR installation is set up as it should be, however, when I import an image, it applies some kind of auto-mix to the images. The images will show up for a split second as they should while loading, then when the standard size preview has been generated, it will shift to some kind of default adjustments.
    I don't have any preferences that I'm aware of set to do this, so I'm not sure what's going on. Here's an example. This is how it's supposed to look:
    Then when it's done loading, this is how it looks:
    I know, we don't all have the same calibration, but you should be able to see some differences. The contrast is higher on the second image, the blue is a little less teal, and there even appears to be some added vignetting.
    Sometimes it's not a problem, since almost everything gets some minor adjustments anyway. But in some situations, it will affect things dramatically, for example, sometimes a properly exposed image will all of a sudden become very under-exposed, presumably because it's detecting that's over-exposed, when it's not.
    Can anyone give me a clear answer on why this is happening, and ideally how to fix it?

    http://forums.adobe.com/thread/358016?tstart=0

  • Toast 7 Importing and Editing Questions

    My story so far is, I got most of a short project done in iMovie 3.0.3, but one of my songs near the end is hopelessly screwed up by two seconds of phantom sound which can't be seen and can't be deleted. Through trial and error I determined the sound was on the soundtrack, not in the clip.
    My question is about importing from more than one iMovie project into Toast 7, and editing the content to be actually burned to DVD.
    If I put the song currently being messed up in the order it's supposed to be on one copy of the project, the audio at the end of the project will almost certainly inherit THE CURSE OF THE PHANTOM SOUND.
    What if I do that in one copy, but leave it where it is in the other copy? Can I import just the good copies of each song in the project to Toast 7, even though it means importing from two different copies of the project? Or do you have to import the iMovie project as a whole?
    If you have to import all of each copy of the project as a whole, will Toast 7 get all screwed up and start complaining before I even get a chance to delete the duplicates, as it would be two copies of things with the same names in slightly different order?
    IF I CAN'T DO THIS, it will mean upgrading to another version of iMovie and a whole other set of problems and questions.
    Thanks for anything that may help straighten me out or set me on the right path.

    To phrase it another way, how much, if any, editing is possible in Toast? It might be simpler to keep both copies the same, put in however many minutes of black space would cover over the bad audio spot, then put the end of the project after that. But in Toast, can I edit the black space down to just the ten seconds I want? Or do I have to burn the whole thing "as is" and then do the editing when I dub from the DVD to the VHS tape?

  • Important-to-me question. Too paranoid to turn on my phone.

    Okay, this will sound weird, but someone very close to me passed away, and before it happened we had a phone conversation. It is on my recent calls list, nothing the length and time of the call. It is important to me that it remain there. I have been out of the country and didn't take my iPhone with me. It has been months since I've turned it on. I'm paranoid to do so now that I'm back, fearing the old recent calls list will be wiped out and replaced by the slew of new ones. I know I have received a lot of calls to this number in my absence and with my phone turned off. I've probably received new text messages, too (and there are a few old text messages I want to save). My questions are, if I turn on my phone now, will my old recent calls list be in jeopardy? And will the new texts wipe out the old ones?
    ETA: I've forgotten exactly which OS I have, but this iPhone is pretty old. I believe the OS is from late 2007 or early 2008.
    Thank you so much for any information. I'd appreciate it.

    Well I am sorry to hear about your recent loss, but to answer your question, I don't know for sure. It is possible that it could be wiped, but not likely. From my experience, the list of recent calls and texts just grow and grow until you clean them up. Worst case, take out the SIM card, turn on the phone, open recent calls and take a screenshot to preserve that memory. To perform a screenshot, press the sleep/wake button on top of the phone and the home button at the same time. You will see the screen flash and it will save the pic into your photo library. The same thing applies to any text messages you may want to keep. Of course put the SIM card back in once you are done. Good luck.

  • First time importing CD - easy question

    I'm about to import my first CD into iTunes.  I have almost no experience with iTunes.  The goal is convert my 500 or so CDs to ALAC.
    I've learned how to set iTunes to ALAC and I've popped in a CD.  I can see iTunes has already retrieved the CD title and track names.
    What I don't see is the cover art.  When I rip the CD to ALAC, will the cover art be embedded in the file?  I want to make sure the cover art is in there so it displays even when I'm not connected to the internet.
    Can anyone help?
    -JOHN

    Thanks for the reply, ejpre.  You answered my question perfectly. 
    I did notice that I had to add the picture to the "get info" page several times before all thumbnails in the folder showed the image art.  iTunes showed the art right away, but for some reason the thumbnails in the file folder didn't all convert.  Some did - some didn't.
    I guess that's just a glitch or a bug. 

Maybe you are looking for

  • Custom File Accesor implementation in 6.1 MP1

    I have made an custom file accessor (IPTCustomFileAccessor) using the Portal Server API for a crawler that is crawling a news website. I found example of the implementation of a custom file accessor to ALI version 5 but it seems that it does not go t

  • Float Video over web page

    Hello all - I would like to float a video over a web page, so that when the web pages is scrolled the video remains on the screen. I have contacted technical support and was told this involved Div tags, and CSS. Both of which I'm fairly familiar with

  • Changing Default Line End Styles in FM8

    Does anyone know how to change the default line end, line width, and color styles in FM8? Every time I open a document and draw a line or an arrow I have to adjust these three things to get what I need. I end up doing this several times a day and I'm

  • Dashboards to SWF export automation

    Hi All, When we click on export in dashboards then it will shows us as .SWF as option. Is there any way to automate this process? Means, there is one executable file which will pick up .XLF file from folder location and convert it into .SWF flash fil

  • Media Manager will not install

    After loading BB Tour 9630 Desktop manager on my computer I can't complete install of media manager. I see files being unzipped and then startup in task bar but then goes into neverland. I have downloaded latest version of Desktop but that didn't hel