Trouble changing Camera RAW settings in Javascript (worked in CS5, but not CS6)

I just upgraded to Master Collection CS6 from Production Premium CS5, and CameraRAWOpenOptions settings in scripts that I had working in Photoshop CS5 (64-bit) using Extendscript CS5 are no longer working with Photoshop CS6.  I get no error messages, but the settings I specify in the scripts (for example, CameraRAWOpenOptions.exposure=2.00) do not take effect when the image is opened.  Other Photoshop properties and actions within my script are working correctly.
Note that this is an issue in Photoshop CS6.  I can use Extendscript CS5 or CS6, and the result is the same.
Here is the way I am changing the settings in my script:
var RawOptions = new CameraRAWOpenOptions;
//RawOptions.settings=CameraRAWSettingsType.CUSTOM;
//RawOptions.settings=CameraRAWSettingsType.SELECTEDIMAGE;
RawOptions.settings=CameraRAWSettingsType.CAMERA;
RawOptions.exposure=+2.00;
RawOptions.vignettingAmount = 0;
RawOptions.vignettingMidpoint = 0;
RawOptions.contrast = 50;
RawOptions.saturation = 0;
RawOptions.shadows = 0;
RawOptions.luminanceSmoothing = 0;
var JPGopts = new JPEGSaveOptions;
JPGopts.quality = JPEGquality;
//Perform the loop through the files
app.open(testListing[0], RawOptions, false);
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
for (var nfile = nstart; nfile < nstop; nfile++)
    app.open(testListing[nfile], RawOptions, false);
    FnameSave = new File(SavePath+"/"+testListing[nfile].name);
    app.activeDocument.saveAs(FnameSave, JPGopts, false, Extension.UPPERCASE);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);

I found a few of them actually work.
CameraRAWOpenOptions.tint=0; // works (-150 to 150)
CameraRAWOpenOptions.temperature=5500; // works (2000 to 50000)
CameraRAWOpenOptions.luminanceSmoothing = 0; // works 0 to 100
CameraRAWOpenOptions.saturation=50; // works =100 to 100
CameraRAWOpenOptions.vignettingAmount=0; //works -100 to 100
CameraRAWOpenOptions.vignettingMidpoint=0; //works -100 to 100
These ones do not work:
CameraRAWOpenOptions.brightness=0; // does not work (0 to 150)
CameraRAWOpenOptions.contrast=0; // does not work (-50 to 100)
CameraRAWOpenOptions.exposure = 0; // does not work (-4.0 to +4.0)
CameraRAWOpenOptions.shadows=0; // (0 to 100) does not work
CameraRAWOpenOptions.whiteBalance=WhiteBalanceType.SHADE; // does not work
I noticed that, doing File-->File Info--> "Advanced" tab-->expand "Camera Raw Properties" that the ones that do not work have mostly either been removed (brightness) or had "2012" added to their names in the XMP in the conversion from CS5 to CS6.
It appears the mapping from Javascript objects/properties to how Photoshop knows them is broken with the new version.  Is there any way to fix this?
Is there an alternate way to do this by going through XMP?
Unfortunately, I'm wanting to use "exposure", which is one of the ones that is broken.  My main script sets a custom exposure for each image (trying to smooth out EV jumps between successive images in a sunset time lapse).

Similar Messages

  • Manipulating Camera Raw settings with javascript

    Is it possible to manipulate the Camera Raw settings with a javascript? I've been looking for info on this and have had no luck finding any.
    What I'm doing is multiple conversions from a single RAW file set at different exposures, brightnesses, sharpnesses, etc.
    Here are the basic steps:
    1. Open RAW file in ACR.
    2. Adjust for a baseline image.
    3. Open image as an object in Photoshop.
    4. Duplicate that object layer and run "edit settings" on this new layer.
    5. Make adjustments ***
    6. Click OK to apply new settings to this layer.
    7. Repeat steps 4-6 on original layer as many times as needed.
    I got everything working as I want, but I'd like to be able to automate step 5 for certain file types so that it will set some of the settings for me without going through the dialog to do this. The settings I'd really like to be able to adjust this way are exposure and brightness and if possible, I'd like to set them in relation to the original layer's settings for those parameters.

    Here is what I had in mind. Note the document is the same size as the raw file. This will place 5 copies of the raw file in the activeDocument, each with a different exposure.
    var rawFile = new File( "~/Desktop/DSC_5396.NEF" );
    var xmpFile = new File( "~/Desktop/DSC_5396.xmp" );
    var exposures = ['-2.0','-1.0','0.0','1.0','2.0'];
    for(var e=0;e<exposures.length;e++){
         setExposure( xmpFile, exposures[e] );
         placeFile( rawFile );
    function setExposure( file, exp ){
         file.open('r');
         file.encoding = "UTF8";
         file.lineFeed = "unix";
         file.open("r", "TEXT", "????");
         var xmpStr = file.read();
         file.close();
         loadXMPLibrary();
         var xmp = new XMPMeta( xmpStr );
         xmp.setProperty( XMPConst.NS_CAMERA_RAW, "Exposure", exp );
         file.open('w');
         file.encoding = "UTF8";
         file.lineFeed = "unix";
         file.write( xmp.serialize() );
         file.close();
    function placeFile( file) {
        var desc = new ActionDescriptor();
        desc.putPath( charIDToTypeID('null'), file );
        desc.putEnumerated( charIDToTypeID('FTcs'), charIDToTypeID('QCSt'), charIDToTypeID('Qcsa') );
            var offsetDesc = new ActionDescriptor();
            offsetDesc.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Pxl'), 0.000000 );
            offsetDesc.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Pxl'), 0.000000 );
        desc.putObject( charIDToTypeID('Ofst'), charIDToTypeID('Ofst'), offsetDesc );
        executeAction( charIDToTypeID('Plc '), desc, DialogModes.NO );
    function loadXMPLibrary(){
         if ( !ExternalObject.AdobeXMPScript ){
              try{
                   ExternalObject.AdobeXMPScript = new ExternalObject
                                                                ('lib:AdobeXMPScript');
              }catch (e){
                   alert( ErrStrs.XMPLIB );
                   return false;
         return true;
    function unloadXMPLibrary(){
       if( ExternalObject.AdobeXMPScript ) {
          try{
             ExternalObject.AdobeXMPScript.unload();
             ExternalObject.AdobeXMPScript = undefined;
          }catch (e){
             alert( ErrStrs.XMPLIB );

  • Trailing cursor javascript works in IE, but not in Firefox

    Javascript trailing cursor works in IE, but not in Firefox
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)

    Without any links to the [http://pastebin.mozilla.org code] we can only suggest you test it in more browsers such as [http://www.opera.com/ Opera] and [http://www.google.com/chrome/ Chrome]

  • How do I get the audio playback from the source monitor to work? I have the trial version of the latest premiere and the audio works in that but not cs6

    I have the trial version of the latest premiere and the audio works in that but not cs6

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    -especially your sound hardware, and the details of your video

  • Having troubles updating Camera Raw to 8.2 on Photoshop CC - "patch not applicable"

    Hello there,
    I have a brand new Photoshop CC 14.0, coming with Camera Raw 8.0.
    If I go through help --> updates no new camera raw version gets recognized, even though 8.1 has already been released.
    Then I tried with 8.2 RC that comes in a zip file, but when I launch AdobePatchInstaller.exe it runs for a short while and then it says something like (I'm roughly translating from Italian):
    Update not succeeded
    Patch application not possible
    This patch is not applicable. Check availability of updates from the Help menu of the product to etc. etc. etc.
    Is this a bug? I would think something is wrong with the 8.2 installer, but in that case the help --> updates should have at least found the 8.1 version, yet... nothing.
    Could you please help?

    Just a quick answer to stress how absurd is this (and to provide help to anybody who may be struggling with the same problem): I solved it this way: with Adobe Creative Cloud (or by any other means I guess) go install Adobe Bridge CC trial version. Now if you go there (that is in Bridge) to Help --> Updates this will find Camera Raw 8.1 as an update and will install it. This is cross application, therefore once it finishes you will have it working in Photoshop too.
    Then again, if you want to install the ACR 8.2 RC (in case the final version isn't out yet) you can run the exectuable in the zip file: it will now install version 8.2 correctly.

  • JavaScript works in Pro but not Reader - NotAllowedError

    I have created a web form in Adobe XI Pro. We have some progress bars at the top with number of fields completed type of thing. All of my JavaScript works perfectly in Acrobat. I save it like so Save As Other > Reader Extended PDF > Enable More Tools. Again everything works in Acrobat. When I open the PDF in Reader the JavaScript won't work. My forms still fill I can save and such, but no JavaScript progress bars. We create this form frequently and it has always worked. I assume it is some sort of new update to Adobe XI Pro. Here is the error I receive in the debugger:
    NotAllowedError: Security settings prevent access to this property or method.
    Doc.title:27:Document-Level:Progress
    I was thinking it might be related to the security settings these are the only 2 things not allowed.
    Document Assembly : Not Allowed
    Page Extraction: Not Allowed
    But as I read through the forums I am not sure that is actually the problem. Any ideas?
    Thanks in advance,
    Jen

    //Turn off the warnings when JavaScript is enabled
    this.getField("JavascriptWarning").display = display.visible;
    this.getField("ProgressTracking").display = display.visible;
    //Required fields warning
    this.alerted = false;
    //Define all required fields
    this.first = this.getField("FirstName");
    this.family = this.getField("FamilyName");
    this.addressOne = this.getField("AddressOne");
    this.addressTwo = this.getField("AddressTwo");
    this.postcodeOne = this.getField("Postcode-1");
    this.daytimeTelephone = this.getField("DaytimeTelephone");
    this.payrollReference = this.getField("PayrollReference");
    //---P46
    this.nationalOne = this.getField("NationalInsurance1");
    this.nationalTwo = this.getField("NationalInsurance2");
    this.nationalThree = this.getField("NationalInsurance3");
    this.nationalFour = this.getField("NationalInsurance4");
    this.nationalFive = this.getField("NationalInsurance5");
    this.nationalSix = this.getField("NationalInsurance6");
    this.nationalSeven = this.getField("NationalInsurance7");
    this.nationalEight = this.getField("NationalInsurance8");
    this.nationalNine = this.getField("NationalInsurance9");
    this.title = this.getField("Title");
    this.surnameOne = this.getField("SurnameFamilyName-1");
    this.firstOne = this.getField("FirstorGivenName-1");
    this.dobOne = this.getField("DOB-1");
    this.dobTwo = this.getField("DOB-2");
    this.dobThree = this.getField("DOB-3");
    this.dobFour = this.getField("DOB-4");
    this.dobFive = this.getField("DOB-5");
    this.dobSix = this.getField("DOB-6");
    this.dobSeven = this.getField("DOB-7");
    this.dobEight = this.getField("DOB-8");
    this.houseOne = this.getField("HouseOrFlatNumber-1");
    this.restAddressOne = this.getField("RestOfAddress-1");
    this.dateOne = this.getField("Date-1");
    //---Leidos Employee Bank Details For Payroll
    this.employeeNumber = this.getField("EmployeeNumber");
    this.bankName = this.getField("BankName");
    this.bankAddressOne = this.getField("BankAddressOne");
    this.bankAddressTwo = this.getField("BankAddressTwo");
    this.bankPostcodeOne = this.getField("BankPostcode-1");
    this.bankSortCodeOne = this.getField("BankSortCode-1");
    this.bankAccountNumber = this.getField("BankAccountNumber-1");
    this.effectiveDate = this.getField("EffectiveDate");
    //---Baseline Personnel Security Standard
    this.birthPlace = this.getField("PlaceOfBirth");
    this.birthNationality = this.getField("NationalityAtBirth");
    this.presentNationality = this.getField("PresentNationality");
    //Load them all into an array
    this.REQUIRED = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, payrollReference, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, title, surnameOne, firstOne, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, houseOne, restAddressOne, dateOne, employeeNumber, bankName, bankAddressOne, bankAddressTwo, bankPostcodeOne, bankSortCodeOne, bankAccountNumber, effectiveDate, birthPlace, birthNationality, presentNationality ];
    //Define the colors to be used
    this.gray = ["RGB", 0.208, 0.208, 0.208];
    this.amber = ["RGB", 0.992, 0.905, 0];
    this.red = ["RGB", 0.937, 0.282, 0.212];
    this.green = ["RGB", 0.431, 0.710, 0.016];
    //Call the document-level functions to update the Checklist
    updateAll();
    function updateAll()
      Dupdate();
      EOWupdate();
      LNHupdate();
      EBDupdate();
      BPSSupdate();
    //Updates the P46 entry.
    /*----------------NEW-------------------*/
    function Dupdate()
      this.DfieldCount = 0
      this.DnumComplete = 0;
      //Get all required fields in the form ----------- ecFirst, ecNationalOne
      var postcodeOne = this.getField("Postcode-1");
      var nationalOne = this.getField("NationalInsurance1");
      var nationalTwo = this.getField("NationalInsurance2");
      var nationalThree = this.getField("NationalInsurance3");
      var nationalFour = this.getField("NationalInsurance4");
      var nationalFive = this.getField("NationalInsurance5");
      var nationalSix = this.getField("NationalInsurance6");
      var nationalSeven = this.getField("NationalInsurance7");
      var nationalEight = this.getField("NationalInsurance8");
      var nationalNine = this.getField("NationalInsurance9");
      var title = this.getField("Title");
      var surnameOne = this.getField("SurnameFamilyName-1");
      var firstOne = this.getField("FirstorGivenName-1");
      var dobOne = this.getField("DOB-1");
      var dobTwo = this.getField("DOB-2");
      var dobThree = this.getField("DOB-3");
      var dobFour = this.getField("DOB-4");
      var dobFive = this.getField("DOB-5");
      var dobSix = this.getField("DOB-6");
      var dobSeven = this.getField("DOB-7");
      var dobEight = this.getField("DOB-8");
      var houseOne = this.getField("HouseOrFlatNumber-1");
      var restAddressOne = this.getField("RestOfAddress-1");
      var dateOne = this.getField("Date-1");
      var dFields = [postcodeOne, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, title, surnameOne, firstOne, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, houseOne, restAddressOne, dateOne];
      //Check required fields for completion and visibility
      for (var i in dFields)
      if (dFields[i].display == display.visible)
      this.DfieldCount++;
      if (dFields[i].value != "" && dFields[i].name != "ReceiveCopy")
      this.DnumComplete++;
      if(dFields[i].name == "ReceiveCopy")
      if(dFields[i].value == "Yes" || dFields[i].value == "No")
      this.DnumComplete++;
      var t = this.getField("PFortySix");
      if (DnumComplete == 0)
      t.fillColor = this.gray;
      this.getField("DProgress").userName = "";
      else if (DnumComplete < DfieldCount)
      t.fillColor = this.amber;
      this.getField("DProgress").userName = "";
      else
      t.fillColor = this.green;
      this.getField("DProgress").value = this.DnumComplete + "/" + this.DfieldCount;
      if (this.DnumComplete == this.DfieldCount) this.getField("DProgress").userName = "Done";
    //Updates the Leidos Expression of Wish entry.
    /*----------------NEW-------------------*/
    function EOWupdate()
      this.EOWfieldCount = 0
      this.EOWnumComplete = 0;
      //Get all required fields in the form ----------- ecFirst, ecFamily, ecAddressOne, ecAddressTwo, ecPostcodeOne, ecNationalOne
      var first = this.getField("FirstName");
      var family = this.getField("FamilyName");
      var addressOne = this.getField("AddressOne");
      var addressTwo = this.getField("AddressTwo");
      var postcodeOne = this.getField("Postcode-1");
      var daytimeTelephone = this.getField("DaytimeTelephone");
      var payrollReference = this.getField("PayrollReference");
      var nationalOne = this.getField("NationalInsurance1");
      var nationalTwo = this.getField("NationalInsurance2");
      var nationalThree = this.getField("NationalInsurance3");
      var nationalFour = this.getField("NationalInsurance4");
      var nationalFive = this.getField("NationalInsurance5");
      var nationalSix = this.getField("NationalInsurance6");
      var nationalSeven = this.getField("NationalInsurance7");
      var nationalEight = this.getField("NationalInsurance8");
      var nationalNine = this.getField("NationalInsurance9");
      var dobOne = this.getField("DOB-1");
      var dobTwo = this.getField("DOB-2");
      var dobThree = this.getField("DOB-3");
      var dobFour = this.getField("DOB-4");
      var dobFive = this.getField("DOB-5");
      var dobSix = this.getField("DOB-6");
      var dobSeven = this.getField("DOB-7");
      var dobEight = this.getField("DOB-8");
      var eowFields = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, payrollReference, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight ];
      //Check required fields for completion and visibility
      for (var i in eowFields)
      if (eowFields[i].display == display.visible)
      this.EOWfieldCount++;
      if (eowFields[i].value != "")
      this.EOWnumComplete++;
      var t = this.getField("ExpressionWish");
      if (EOWnumComplete == 0)
      t.fillColor = this.gray;
      this.getField("EOWProgress").userName = "";
      else if (EOWnumComplete < EOWfieldCount)
      t.fillColor = this.amber;
      this.getField("EOWProgress").userName = "";
      else
      t.fillColor = this.green;
      this.getField("EOWProgress").value = this.EOWnumComplete + "/" + this.EOWfieldCount;
      if (this.EOWnumComplete == this.EOWfieldCount) this.getField("EOWProgress").userName = "Done";
    //Updates the Leidos Limited New Hires entry.
    /*----------------NEW-------------------*/
    function LNHupdate()
      this.LNHfieldCount = 0
      this.LNHnumComplete = 0;
      //Get all required fields in the form ----------- ecFirst, ecFamily
      var first = this.getField("FirstName");
      var family = this.getField("FamilyName");
      var lnhFields = [first, family ];
      //Check required fields for completion and visibility
      for (var i in lnhFields)
      if (lnhFields[i].display == display.visible)
      this.LNHfieldCount++;
      if (lnhFields[i].value != "")
      this.LNHnumComplete++;
      var t = this.getField("LimitedNewHires");
      if (LNHnumComplete == 0)
      t.fillColor = this.gray;
      else if (LNHnumComplete < LNHfieldCount)
      t.fillColor = this.amber;
      else
      t.fillColor = this.green;
      this.getField("LNHProgress").value = this.LNHnumComplete + "/" + this.LNHfieldCount;
      if (this.LNHnumComplete == this.LNHfieldCount) this.getField("LNHProgress").userName = "Done";
      else this.getField("LNHProgress").userName = "";
    //Updates the Leidos Employee Bank Details for Payroll entry.
    /*----------------NEW-------------------*/
    function EBDupdate()
      this.EBDfieldCount = 0
      this.EBDnumComplete = 0;
      //Get all required fields in the form -----------
      var first = this.getField("FirstName");
      var family = this.getField("FamilyName");
      var employeeNumber = this.getField("EmployeeNumber");
      var bankName = this.getField("BankName");
      var bankAddressOne = this.getField("BankAddressOne");
      var bankAddressTwo = this.getField("BankAddressTwo");
      var bankPostcodeOne = this.getField("BankPostcode-1");
      var bankSortCodeOne = this.getField("BankSortCode-1");
      var bankAccountNumber = this.getField("BankAccountNumber-1");
      var effectiveDate = this.getField("EffectiveDate");
      var ebdFields = [first, family, employeeNumber, bankName, bankAddressOne, bankAddressTwo, bankPostcodeOne, bankSortCodeOne, bankAccountNumber, effectiveDate ];
      //Check required fields for completion and visibility
      for (var i in ebdFields)
      if (ebdFields[i].display == display.visible)
      this.EBDfieldCount++;
      if (ebdFields[i].value != "")
      this.EBDnumComplete++;
      var t = this.getField("EmployeeBankDetails");
      if (EBDnumComplete == 0)
      t.fillColor = this.gray;
      else if (EBDnumComplete < EBDfieldCount)
      t.fillColor = this.amber;
      else
      t.fillColor = this.green;
      this.getField("EBDProgress").value = this.EBDnumComplete + "/" + this.EBDfieldCount;
      if (this.EBDnumComplete == this.EBDfieldCount) this.getField("EBDProgress").userName = "Done";
      else this.getField("EBDProgress").userName = "";
    //Updates the Baseline Personnel Security Standard entry.
    /*----------------NEW-------------------*/
    function BPSSupdate()
      this.BPSSfieldCount = 0
      this.BPSSnumComplete = 0;
      //Get all required fields in the form -----------
      var first = this.getField("FirstName");
      var family = this.getField("FamilyName");
      var addressOne = this.getField("AddressOne");
      var addressTwo = this.getField("AddressTwo");
      var postcodeOne = this.getField("Postcode-1");
      var daytimeTelephone = this.getField("DaytimeTelephone");
      var dobOne = this.getField("DOB-1");
      var dobTwo = this.getField("DOB-2");
      var dobThree = this.getField("DOB-3");
      var dobFour = this.getField("DOB-4");
      var dobFive = this.getField("DOB-5");
      var dobSix = this.getField("DOB-6");
      var dobSeven = this.getField("DOB-7");
      var dobEight = this.getField("DOB-8");
      var birthPlace = this.getField("PlaceOfBirth");
      var birthNationality = this.getField("NationalityAtBirth");
      var presentNationality = this.getField("PresentNationality");
      var bpssFields = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, birthPlace, birthNationality, presentNationality];
      //Check required fields for completion and visibility
      for (var i in bpssFields)
      if (bpssFields[i].display == display.visible)
      this.BPSSfieldCount++;
      if (bpssFields[i].value != "")
      this.BPSSnumComplete++;
      var t = this.getField("Baseline");
      if (BPSSnumComplete == 0)
      t.fillColor = this.gray;
      else if (BPSSnumComplete < BPSSfieldCount)
      t.fillColor = this.amber;
      else
      t.fillColor = this.green;
      this.getField("BPSSProgress").value = this.BPSSnumComplete + "/" + this.BPSSfieldCount;
      if (this.BPSSnumComplete == this.BPSSfieldCount) this.getField("BPSSProgress").userName = "Done";
      else this.getField("BPSSProgress").userName = "";

  • Javascript works in FF but not in IE7

    I finally got my first ever DW site up, at
    www.excellentbirds.com. In my happiness and excitement, I started
    tweaking things the other day, and added some JS I found that would
    essentially show a different image from an array of image names
    each time the user visited the home page. This works fine in FF,
    which is my normal browser.
    Now I just noticed (my bad!) that this doesn't work in IE7 at
    all! I ran the MS script debugger, and it said that
    the array 'urls' was undefined. That is true as it is not
    "predeclared" (the way you would in ANSI C at least).
    Would anyone be so kind as to take a quick look at the main
    page an tell me how to make this IE-safe?
    Apologies in advance for getting ahead of my knowledge!
    Thanks,
    Mitch

    On Thu, 27 Mar 2008 17:15:38 +0000 (UTC), "LiveFreeOrDie"
    <[email protected]> wrote:
    >I thought of that (being a C programmer), but wanted to
    ask. Others
    >have suggested that the "urls" really just needs to be
    declared with a
    >'var'. IOW, it is not declared properly.
    <sigh> I never really came to grips with C. I was more
    of a
    Pascal/Delphi guy. ;-)
    If I were doing it, I would replace your function with this
    inside the
    <head> of the document:
    <script type="text/javascript">
    <!--
    var urls=Array("images/SANDER0011.jpg",
    "images/SEMPLO0001.jpg","images/SPOSAN0001.jpg",
    "images/ROSSPO0006.jpg","images/PURGAL0013.jpg",
    "images/NORPAR0009.jpg","images/HOOWAR0001.jpg",
    "images/CAMAWA0005.jpg","images/BLUJAY0003.jpg",
    "images/BLBEPL0001.jpg");
    function displayRandomImage(imageName,array){
    document.getElementById(imageName).src=array[new
    Date().getTime()%array.length];
    </script>
    That would also require that you add the ID attribute to the
    image
    you want to display the random image. Change this:
    <img src="images/spacer.gif" name="changeImage" />
    To this:
    <img src="images/spacer.gif" name="changeImage"
    id="changeImage" />
    Gary

  • Button Toggle ADF Javascript(Works in Firefox but not in IE. why ?)

    I have written a code to toggle button in ADF as follows:
    <af:resource type="javascript">
    function enableDisable(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='red';
    document.getElementById('cb2').style.background='green';
    alert("221");
    function enableDisable1(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='green';
    document.getElementById('cb2').style.background='red';
    alert("221");
    </af:resource>
    <af:form id="f1">
    <af:commandButton text="commandButton 1" id="cb1"
    inlineStyle="background:'red';">
    <af:clientListener method="enableDisable" type="click"/>
    </af:commandButton>
    <af:commandButton text="commandButton 2" id="cb2" inlineStyle="background:'green';">
    <af:clientListener method="enableDisable1" type="click"/>
    </af:commandButton>
    This code works fine in Firefox, But My requirement is to run it in IE which it doesn't.
    Kindly provide me solution or any pointers to resolve this.

    I do not now what the function of this declaration is, but
    please remove this from the beginning your css and IE7 also shows
    bullets:
    margin: 0;
    padding: 1;
    The padding: 1; is definitely an error cause there should be
    at least something like px behind the 1, so like padding:
    1px;

  • Adobe Jenson Pro Works in CS5 But Not CC Apps

    In FontBook I run "Validate File" on the font and there's no problem. But I can't use the font in any of my CC applications although they work fine in CS5 apps.
    To this point I've been using Linotype FontExplorer X v1.2.3 and all the fonts worked fine in CC... until today. I'd kept all my fonts in Dropbox, but copied the ones I wanted to install onto my MBP HD. I was running out of room on Dropbox so I copied a bunch of files from Dropbox to my HD (including the fonts), then deleted those files from Dropbox.
    Any ideas?

    Sorry; meant "Character" panel.
    First, font works fine in Id, Ai and Ps CS5. I've installed the font family into the ~/Library/Fonts/ folder. Has trouble in TextEdit, though. Notice only five choices in the drop-down on the left but seven font choices in the menu at right:
    InDesign CC gives me choices, but when I choose one it puts parentheses around the choice and tells me the font is missing. Also, choices disappear from the menu, one by one:
    When choosing the font in Photoshop CC:
    My MacBook Pro:
    I've just subscribed to CC, but I don't know what to do about the whole font issue. Though I've not tried other fonts, if it happens with this font it's likely to happen again.
    I appreciate any help or guidance. Thanks!
    Edd

  • Where do I find the Camera Raw settings file?

    I've been running Creative Suite 3 on a MacBook Pro. I just bought a Mac Pro so got my disks off the shelf to install on the new machine. That's when I found I have to deactive the programmes on the laptop in order to install them on the tower. (Which strikes me as outrageously restrictive. How many people work on a tower at home and a laptop for the road?)
    Having gone throught the deactivation/activation process, I opened Photoshop to process some NEF files, and then remembered that my Camera Raw settings were somewhere on the laptop - but where ??? I assume there must be a file somewhere, but have not so far been able to find it.
    Any ideas gratefully received.
    Thanks

    Victor Burgin wrote:
    I've been running Creative Suite 3 on a MacBook Pro. I just bought a Mac Pro so got my disks off the shelf to install on the new machine. That's when I found I have to deactive the programmes on the laptop in order to install them on the tower. (Which strikes me as outrageously restrictive. How many people work on a tower at home and a laptop for the road?)
    Having gone throught the deactivation/activation process, I opened Photoshop to process some NEF files, and then remembered that my Camera Raw settings were somewhere on the laptop - but where ??? I assume there must be a file somewhere, but have not so far been able to find it.
    Any ideas gratefully received.
    Thanks
    By "Camera Raw Settings file", I take it that you are looking for the develop settings for each raw file. These settings can be stored in two ways. The first and most common method is to store them as sidecar *.xmp files in the same directory as the NEFs. The other method is to store them in a centrally located Camera Raw database. One can change these methods via the Edit Preferences menu of either Photoshop or Camera Raw. Further information is here:
    http://help.adobe.com/en_US/Photoshop/11.0/WSD94FB319-761D-4e9a-BC8D-24DF7EBC05B4.html
    The storage location for this central database as well as the storage locations for other settings are shown in this Adobe link:
    http://kb2.adobe.com/cps/405/kb405012.html

  • CS6 Plugin works on windows but not mac

    Hi,
    We have been developing a plugin for InDesign since CS3 and have recently ported it to CS6 (it was ported to all previous versions too, as they came out).
    I followed the porting guide etc. and on windows it compiles and runs just ok - the plugin works correctly.
    But when i compiled the same files on our mac machine and put the .indesignPlugin file in th plugins directory i can't see our plugin's context menu.
    I can see that it is in fact loaded on startup (when i remove it ID loads 325 extensions, when i put it back - 326), but still it dosen't seem to work...
    I initially thought that the versioning was off but our PluginVersion resource relies solemnly on SDKDef.h , i also tried putiing the file in CS5's plugin directory and got an error message that CS6 is required - so the version info is fine i guess.
    We are using xCode 3.2.5 (because we have to support Mac OS 10.5 and 10.4) to build on mac and i've never had problems before - it worked on CS4, CS5 and CS5.5.
    The changes i made when porting were minor and only in the code - so what has changed? and how come it works on windows but not on mac?
    Any input is greatly appreciated, i've already spent days trying to understand this.
    Thanks,
    Dan.

    Hi and thank you for replying.
    The resources do get compiled correctly (i assume this because we do get a .indesign file at the end - which means the ODFRC ran ok). they are linked correctly in the mac project (i saw a file that determines the version - it's linked the same way against my win and mac projects and the win version works fine so i guess that's ok too).
    the context menu is just another menu on the "menu bar" (don't know how to call it?) - i.e where the "file" and "edit" etc. menus are.
    I can't seem to understand how come this works fine under windows but not under mac - they are essentially the same projects linked against the same resources (the difference being iCode vs VC10 projects).
    can this be related to the fact we're using xCode 3.2.5?
    Thank you.

  • Camera raw settings change while rating stars

    While I rate my images with stars in Bridge, I can see that the Camera Raw settings are changing the preview image as soon as set the stars in the Content panel are set. Why does the preview changes if the thumbnail is already generated? Shouldn't any newly generated thumbnail contain Camera Raw Default Settings as soon as they are displayed? Can anyone please tell me how to set-up Bridge or Camera Raw Preferences correctly in order to generate from the first time the preview images with my Camara Raw Default Development settings? Thank you for any usefull hint.

    This is just a guess, but I would say that is the way it should work.
    If you have Bridge set to HQ thumbs the thumbnails will reflect the current edit of the RAW image.  Since lables are considered an edit (change of metadata), Bridge would have to rebuild the thumbnail to the current version, even though it does not reflect any visual changes.

  • Bridge freezes when applying camera raw settings to large number of files

    I have a folder with 32,000 frames from a time-lapse project that I'm doing. I'd like to apply the same camera raw adjustments to all of these files, and so follow one of the two methods below - neither of which are working with such a large set of files:
    Method 1:
    Select all files, open in camera raw.
    Apply changes to the first image
    Select all images, then synchronize the changes to all other images.
    Unfortunately selecting "Open in Camera Raw..." just leaves bridge to hang. It's using a lot of memory and processor time, so I would assume it's working, but there's no progress bar or similar to indicate that it is.
    Method 2:
    Open first file in Camera Raw
    Apply all changes, and exit camera raw.
    Select all files in Bridge, right click on one and select "Develop Settings -> Previous Conversion"
    Unfortunately the final step again leaves bridge just thinking. I waited around an hour, closed bridge, but unfortunately when I opened it again there was no sign that it had copied the camera raw settings onto any of the other files. My computer's pretty slow (see below) but it should have written one xmp file in an hour.
    Question:
    Does anyone have any workarounds other than repeating the process 32 times for 1000 images at a time?
    System Info From Photoshop:
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows Vista 64-bit
    Version: 6.0 Service Pack 2
    System architecture: AMD CPU Family:15, Model:15, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 1
    Processor speed: 1808 MHz
    Built-in memory: 8062 MB
    Free memory: 4508 MB
    Memory available to Photoshop: 7140 MB
    Memory used by Photoshop: 70 %
    Image tile size: 132K
    Image cache levels: 4
    OpenGL Drawing: Disabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: False.
    OpenGL Allow Advanced Mode: False.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce 6150SE nForce 430/PCI/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1024, right: 1280
    Video Card Number: 1
    Video Card: NVIDIA GeForce 6150SE nForce 430
    OpenCL Unavailable
    Driver Version: 8.17.12.7533
    Driver Date: 20110521050100.000000-000
    Video Card Driver: nvd3dumx.dll,nvd3dum
    Video Mode: 1280 x 1024 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce 6150SE nForce 430
    Video Card Memory: 128 MB
    Video Rect Texture Size: 4096
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\MARTIN~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      H:\, 279.5G, 50.4G free
      D:\, 149.0G, 108.1G free
      E:\, 74.5G, 46.1G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    The files are only 2MP each, and I have the same issue when I apply the changes to RAW files and JPG files. The error occurs though before any changes are applied, before the images would need to be recached, as when the error doesn't occur the dialogue box I mentioned pops up asking what to change.
    Your specs sound more then enough I would think. Do you have set the option to Write cache to folders when possible and if so could you uncheck that option?
    I don't have experience with this kind of numbers but I do dump the Bridge cache manually on a regular base (every new cycle it seems to be more stable so more interval in the periods of dumping cache) but my main folder contains usually around 6 to 7 K of DNG files from 21 MP dSLR. This starts caching without problems but takes a few hours before done.
    Can't use the option cache for folder due to a longstanding problem with error message to replace the CacheT file, hence my question about your setting.
    Also I have set the option to previews Always HQ and in the prefs have set the option to build monitor size previews.
    As said, don't know the large numbers but the 2 MP files are very small and it should be possible for Bridge I would think?
    Did you also try to create a new folder and place the files inthere. Or divide them in to three folders for testing?

  • Edit camera raw in Bridge stopped working CS5 (and star rating removed)

    I have always had the 'double click edits camera raw settings in Bridge' setting enabled.  Half way through editing a batch of 1000 images, instead of opening in Bridge the image opened in Photoshop.  I checked the selection in Bridge, re-enabled it, closed Bridge and opened a few times, re-enabled again, re-booted my system, but it still opens raw files in Photoshop.  This is extremely irritating as I now have to switch windows every time I go to do the next edit.  I don't need Photoshop running for 90% of the edits I am doing.  I made no changes to my system during the time that I was editing.
    Any ideas?
    Stuart
    PS
    At the same time as this error occurred Bridge now removes star ratings as in the following sequence:
    1  Give image 3 *
    2  Double click to edit and raw file opens in Photoshop
    3  Edit and save image.
    4  Click done and return to Bridge
    5  The 3 * rating has been removed and the saved jpg also has 0 *
    PPS
    I have partly solved the problem.  I normally convert to DNG but did not do so on this occasion.  In the batch were files from a Canon 5D and and Canon 5D mkII.  A very small number of the 5D files have the problem above.  I converted all these to DNG and I can edit normally.  But I am still at a loss as to why some files exhibit this strange behaviour.

    The forum is not dead; moribund, perhaps. :-)
    You do realize that this is a user forum, don't you?  This is not a conduit to address Adobe.
    The volunteer contributors who give their time free of charge here respond to questions if and when they think they can help, if they know the answer to a question, and if they think the original poster has provided enough, detailed information.  No one has any obligation to answer questions.
    My use of Windows is, mercifully, restricted to an absolute minimum these days, otherwise I would have attempted to extract more information from you about your machine and system.
    At this point, I don't have more Windows tricks to offer you other than to uninstall and do a complete re-install of Photoshop.
    Therefore, the boilerplate-text advice that follows is simply meant to encourage you to provide more information so that one or more of the Windows wizards in this forum may be moved to respond to you.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them, etc.,
    someone may be able to help you (not necessarily this poster).
    A screen shot could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Camera RAW 431 won't work on my Vista 64 machine.

    Vista 64
    CS3
    Camera RAW 431 won't work on my Vista 64 machine. I keep getting the error that it's the wrong file type when trying to open the RAW file, and I get no thumbnails. I've deleted all cache files manually--not using the Adobe help because their wrong about their file locations, that's for Windows XP and not Vista. (You can't access "Documents and Settings" in Vista, and there is no:
    Program Files\Common Files\Adobe\Plug-Ins\CS3\File Formats
    Vista:Program Files (x86)\Common Files\Adobe\Plug-Ins\CS3\File Formats
    I even uninstalled the entire CS3 Suite and reinstalled it. It still won't work. In fact, I can't even use the old raw plugin file anymore--it now won't open RAW files either.
    Anyway, I just need a confirmation that Camera RAW 431 actually works in Vista 64, since the directions do not in the least relate to Vista 64, but, rather, Windows XP, and the method used to get RAW 431 to work in Vista 64.
    Thanks

    Zippy,
    "C:\Program Files (x86)\" is the location of 32-bit apps (like Photoshop CS3) in 64-bit Vista. It is known as simply "C:\Program Files\" in all 32-bit editions of Windows. Since the vast majority of Windows/Photoshop users are likely still on a 32-bit platform, it is understandable why the instructions omit the 64-bit specific folder path.
    The VirtualStore copy indicates that at some point, you (or Photoshop) attempted a programmatic update of the file, and it attempted to write into the restricted Common Files folder. Vista redirected that to the VirtualStore folder instead. On my 64-bit Vista install, I have no Adobe files in there at all... this is likely due to my insistence on manual updates.
    I would try this:
    1. Backup all your personal Photoshop files (actions, palettes, window positions, keyboard shortcuts, brushes, etc.).
    2. Uninstall Photoshop CS3 as best you can.
    3. Manually delete all Photoshop-related folders inside the VirtualStore. You may have to look inside both the virtualised "Program Files (x86)\Common Files" and "Program Files (x86)\Adobe" folders.
    4. Run the WinCS3Clean script to ensure there are no problematic bits left over from your beta CS3 install. I'm hoping your manual excursion through the Windows registry did not hurt more than it helped.
    5. Reinstall CS3 and manually update the "Camera Raw.8bi" plugin. I put mine in "C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS3\File Formats\".
    Depending on how your OS is configured, it may be easier if you login as Administrator first. Photoshop CS3, Bridge 2.1, ACR 4.4 (and all previous versions) and Lightroom 1.4 (and all previous versions) work as expected on my 64-bit Vista machine here, so this is not a general compatibility issue.

Maybe you are looking for

  • Error in executing root.sh - due to network failure

    Hi, My Grid Installation were almost complete. I am already executing root.sh for the first node but unfortunately the network seems to get hang based on the error I encountered while tailing the +/app/oraInventory/logs/installActions2010-07-31_09-38

  • Some objects refuse to scale in size when moved

    Say I have three circles on a slide. I want to animate a move of each circle to another section of the slide and I want the circles to either shrink or grow as they move. I can do this with two of the circles with no problem, but the last one will on

  • Preserve remote vlan with Q in Q

    One of our remote sites needs to move their servers to our datacenter. We need to do this while maintaining the server vlan of the remote site so the server's addresses do not change when they are moved here. Currently the remote site is connected ov

  • Itunes on home screen?

    Not sure if this is the right place for this topic. when in the "slide to unlock" screen (not sure of the name for this screen...), If I hit the home button twice quickly, a song from my itunes comes up, with controls but no name of the track. is thi

  • Use task flow or simple pages in CRUD?

    Hello, using JDeveloper 12c. In my case I use task flow to create a simple CRUD, i have two task flow, for it in the first I have a employees table and a button to create a new employee, the button has an action to go to another task flow where I hav