I dont understand what camera raw is

Can anyone explain it to me like I was in 3rd grade? How do I access it??

Camera Raw is Photoshop's raw file processor. It can also be used with other file types such as JPEG. If you know what Lightroom is, ACR is very similar to that. You can get to it by opening a raw file (or a JPEG if you have Photoshop set to open them that way), or you can also use it by right clicking on a file in Bridge and selecting "Open in Camera Raw."
Here is what Camera Raw looks like:
Benjamin

Similar Messages

  • I am trying to download a plug in called adobe flash player 10.1.102 and error shows up that says instalation encountered errors sign in under administraive privileges and try again and i dont understand what that is or what to do. help please!

    im tryin to down load this plugin like it keeps suggesting because none of the video clips or games of any sort is showing and it wont download. it keeps saying theres an error and i need to sign in under administrative privileges but it doesnt give me that option. i dont understand what to do> help please!!!

    Follow the instructions below. Note the part about "Windows 7 and Vista".
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "Download..." page below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*Download and information: http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *Adobe PDF Plug-In For Firefox and Netscape
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.

  • HT204406 itunes crashes my computer (windows 7) while trying to upload my music. Its happened multiple times now and I have no songs which are more than 200 mb. Dont understand what is breaking it

    My itunes keeps crashing while trying to upload music ti icloud using match. I have checked my collection and there are no songs more than 200 mb. The problem is getting so bad that now my OS (windows 7) is crashing. Dont understand what is breaking itunes....

    My itunes keeps crashing while trying to upload music ti icloud using match. I have checked my collection and there are no songs more than 200 mb. The problem is getting so bad that now my OS (windows 7) is crashing. Dont understand what is breaking itunes....

  • Dont understand what is wrong in code

    Task of my code that movieclip added on stage, change its size - height when change size of browsers(player) window thus height movieclip = height rowsers(player) window.
    That is my code:
    package
    import flash.display.*;
    import flash.display.Sprite;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    public class ZhMenu extends Sprite
    public var menubg:MovieClip;
    public function ZhMenu()
    var menubg:  = new menuGrad();
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, onResize);
    this.addChild (menubg);
    menubg.x=0;
    menubg.width = 150;
    menubg.height = stage.stageHeight;
    public function onResize (event:Event):void
    var sh:Number = stage.stageHeight;
    menubg.x=0;
    menubg.width=150;
    menubg.height=sh;
    In the issue MovieClip menubg added on stage but when i change size of window i get error:
    TypeError: Error #1009: It is not possible to cause property or a method referring to object "null".
    at ZhMenu/onResize()
    And menubg dont change its size of course.
    I dont understand what is wrong.
    Plize help me if u know Action Script 3.0 better.

    Because you do not have an instance of the object... open a new fla and try these lines...
    // this will fail
    var menubg:MovieClip;
    menubg.x = 0;
    // this will not fail
    var menubg2:MovieClip = new MovieClip();
    menubg2.x = 0;

  • What camera raw download do I need for photoshop CS6 and a canon 5D mark 111 on a Mac 10.8.5 computer?

    What camera raw download do I need for Photoshop CS6 with a Canon 5D mark 111 on a Mac 10.8.5 computer

    Got it to work.
    Thanks so much for your help.
    On Sun, Aug 17, 2014 at 2:36 PM, John Waller <[email protected]>

  • What camera raw default settings would you use for the Canon 5D Mark 3. I have PS CS6.  Thank you.

    What camera raw default settings would you use for the Canon 5D Mark 3. I have PS CS6.  Thank you.

    Really, this is a question you should be asking yourself...
    What do you shoot? Makes a difference...
    Typical ISO that you shoot? Makes a difference...
    Shooting for clients or yourself? Makes a difference...
    Look, there is no magic bullet...the ACR/LR "Default" should only be changed for those adjustments you make 70-90% of the time and sould not be confused with image by image adjustments...
    So, as asked, your question can not really be answered other than to say, use a default that suits you.

  • Because I want to check my location after they said Actions will take effect when this iphone connects to the internet I dont understand what happen

    because I want to check my location after they said Actions will take effect when this iphone connects to the internet I dont understand what happen

    One post is enough, no need to create 3 threads on the same subject.

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskU

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Turn it off.
    Start it up again and (at the sound of the chime) press and hold the command and the R keys, hold them down until Recovery loads. When it does you will select Disk Utility and you should be on the First Aid tab when it opens, if you are not please select it. Then select the partition (in the side bar, 2nd entry on the list, see picture).
    Yours is probably called Macintosh HD.
    Once you have selected it go to the lower righthand corner of the First Aid dialog and press Repair Disk.
    This will take 10 minutes approximately. Post back when it is finished and tell me what it says.

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Reboot hold the command R for recovery.

  • What camera raw plugin for Photoshop CS2 + Canon Rebel T21

    I still have the excellent Photoshop CS2 and bought a Canon EOS Rebel T2i. However, the raw files come up in Bridge without picture preview. The file is a CR2 file. When double-clicked, Photoshop 2 opens and gives error dialog:
    "Could not complete request because not right kind of document."
      I see that version 5.7 and 6.1 of Adobe Camera Raw Plug in are compatible with this camera. Can I use either plug in with Photoshop 2?

    Congratulations on your decision to move up to Photoshop CS5.  It's a good product.
    I'm not sure exactly what you mean by your question, though...
    In my own case, I have .CR2 files associated with a program called Irfan View so that when I double click a .CR2 file it opens immediately in this very fast image viewer program.  All .CR2 files have embedded JPEG previews, and I can view these embedded JPEGs from my raw files instantaneously with Irfan View.
    While using Explorer, if I want to open an image file with Photoshop (i.e., to do an actual raw conversion), I either drag the file and drop it on a desktop Photoshop icon -or- I right-click the file and choose Open With - Adobe Photoshop CS5.
    Multiple versions of Photoshop will live happily side by side on the same system.  You just can only run one of them at a time.
    Most folks recommend leaving older versions of Photoshop installed.  This allows you access to the version you're familiar with so that you can go back and check settings, save actions, etc. and it does provide you a backup editor if something should go wrong with the new one.
    Assuming you have the disk space, you never really need to uninstall an older version of Photoshop, and in fact uninstalling Photoshop after installing a newer version is reported to cause problems in some cases.
    -Noel

  • Dont understand what i should put down for host name for creating an email account?

    Dont understand incoming and outcoming server. dont know what to put for host name.
    can someone help?

    Do you have your email account set up on your computer e.g. on Outlook on a PC or Mail on a Mac ? If you have then you should be able to sync the settings from that to your iPad via the Info tab when connected to your computer's iTunes. Or you could just look at the settings for the account on your computer's email program and copy them over to the iPad manually.
    The incoming and outgoing server names are the servers that your email provider uses for your account to recieve (incoming) and send (outgoing) emails. A lot of accounts should be covered by the options that are listed on the 'Add Account' screen - for my Yahoo based accounts I just chose Yahoo! and the settings were set for me. If you have an account that isn't covered by those types then you could try logging into your account via a browser and see if they have any help for what settings you need to use. Different account providers have different settings, so if your can't find anything on your provider's site if you say on here who your provider is there might be somebody else here who has the same provider and can tell you what settings to use.

  • HT1926 downloading jackson 5 cd 3 days ago and its still running , dont understand what to do

    downloading jackson 5 cd 3 days ago and its still running, dont understand how to fix it

    Ok, I will remove every USB device I have. (or mix it up)
    1 UPS
    1 ReadyBoost
    1 mouse
    1 keyboard
    To test if each beep is caused by USB.
    I should have expected something like this as the beeping started after upgrading bios to 1.4.
    Is there any ETA on a 1.5?
    And anyone know a way to see the POST_LED in windows?
    Also ive read some of http://www.xtremesystems.org/forums/showthread.php?t=221303 but after 20 pages i gotten a bit dizzy.

  • I have been shut down from my previous email address as I left my company's email system, I am now on gmail and have changed my Apple Id and password successfully unfortunately I dont understand what I need to do to change my ICloud, IFace etc...ID?

    I have bene shut down from my previous Apple email ID as i left my company email' server. I have move to gmail and have successfully reset my Apple ID accordingly. My iCloud, IFace etc...unfortunately pop up with the previous email address and I dont remember the password, so I cant get in and change it to gmail! Anyone out there knows what to do, i would be very grateful, thanks. M

    First thing to try is just to sign out on all your devices. If you can do that you can just sign in with the new ID. However if you've set up 'Find My iPhone' you won't be able to.
    In that event go to http://iforgot.apple.com and sign in with your iCloud login. A new password will be sent to your associated email address. If this doesn't work you will have to contact Support. Go to https://getsupport.apple.com . Click' See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password'. If you have any problems with that try this form: https://www.apple.com/emea/support/itunes/contact.html

  • What Camera RAW files supported in 10.5.8 update?

    Heard the 10.5.8 update released today includes RAW support for several new cameras. Anyone know which ones are included? Waiting for Apple to support the Panasonic DMC-G1.
    Kevin

    The Apple list - http://support.apple.com/kb/HT1475 - has not yet been updated to include 10.5.8 updates for RAW - I've not fond a list anywhere - I would expect the above article to be updated at any time to reflect 10.5.8
    I will post a note for Apple to remind them -= although I expect they are fully aware
    LN

  • HT1490 i dont understand what apple is saying!

    Plug in the power adapter and fully charge your PowerBook's battery until the light ring or LED on the power adapter plug changes to green and the onscreen meter in the menu bar indicates that the battery is fully charged.
    Allow the battery to rest in the fully charged state for at least two hours. You may use your computer during this time as long as the adapter is plugged in.
    Disconnect the power adapter while the computer still on and start running the computer off battery power. You may use your computer during this time. When your battery gets low, the low battery warning dialog appears on the screen.
    QUESTION!
    i dont really get no. 2.
    So, we allow the battery to rest in full state for at least two hours and we may use the computer during that time? Are we suppose to use it while it is resting or leave it to rest?
    and does it mean that, once it has been fully charged, with the adapter still plugged in, we can use it as long as we want ?

    tmxuan wrote:
    so , what is the right way of maintaining a battery? i should let it run dead right? what is the right time for me to plug my charger in? once it hits 10 percent?
    No NEVER let it run down to Zero. That is very bad for the battery. Other then that use it as you like.

Maybe you are looking for

  • Error Starting OWB Rep Browser Listener

    Trying to start the OWB Repository Browser Listener, on a Win XP client (11g/11g), via StartOwbbInst.bat, and I receive the following error: 2010-02-03 19:07:37.421 ERROR J2EE HTTP-10001 Could not create Secure http listener due to {0} 2010-02-03 19:

  • "Enter" in a multi-line text item (Urgent)

    Hello, I am using developer 6i. I have a text item on my form with the following properties: Height = 100 width = 100 Multiline = True Now i am assiging a value to this text item programatically. I want to show the data assigned to this field in the

  • Multiple items in custom form

    I'm new to Service Manager customization and try to do this task ,  I have custom management pack for our configuration items , I added a CI class "ITServer" which would have multiple harddisks, I created a Hard Disk Class and make a relationship (1

  • Problems with Elements since downloading Lightroom

    Since downloading Lightroom 4, I can't delete anything from Bridge CS4 nor can I save changes made in Elements 8. Can anyone help?

  • Update with join/subquery

    I have 2 tables tblA(aID, aSeq, aname, aLname) tblB(bSeq, bname, bLname) I need to update table tblA to set aSeq where the name and Lname match with tblB. Something like update zA A set A.aSeq = select B.bSeq from zB B where UPPER(B.bname) = UPPER(A.