Full list of ACR settings for use in bridge scripting

General Discussion of Scripting for Adobe Bridge

Moderators: Tom, Kukurykus

Patrick

Full list of ACR settings for use in bridge scripting

Post by Patrick »

The Bridge JavaScript Reference only briefly touches on how to access the Adobe Camera Raw settings for a file. Here is an example of how to change ACR settings on a image within Bridge:

Code: Select all               var tn = app.document.thumbnail.metadata;
               tn.namespace = "http://ns.adobe.com/camera-raw-settings/1.0/";
               tn.Saturation = -100;

Here is a list of (I believe) all the possible ACR settings you can change:

tn.Version
-> input: string

tn.RawFileName
-> input: string

tn.WhiteBalance
-> input: string

tn.Temperature
-> input: integer

tn.Tint
-> input: integer

tn.AutoExposure
-> input: boolean

tn.Exposure
-> input: integer

tn.AutoShadows
-> input: boolean

tn.Shadows
-> input: integer

tn.AutoBrightness
-> input: boolean

tn.Brightness
-> input: integer

tn.AutoContrast
-> input: boolean

tn.Contrast
-> input: integer

tn.Saturation
-> input: integer

tn.Sharpness
-> input: integer

tn.LuminanceSmoothing
-> input: integer

tn.ColorNoiseReduction
-> input: integer

tn.ChromaticAberrationR
-> input: integer

tn.ChromaticAberrationB
-> input: integer

tn.VignetteAmount
-> input: integer

tn.ShadowTint
-> input: integer

tn.RedHue
-> input: integer

tn.RedSaturation
-> input: integer

tn.GreenHue
-> input: integer

tn.GreenSaturation
-> input: integer

tn.BlueHue
-> input: integer

tn.BlueSaturation
-> input: integer

tn.ToneCurveName
-> input: string

tn.ToneCurve
-> input: array

tn.CameraProfile
-> input: string

tn.HasSettings
-> input: boolean

tn.HasCrop
-> input: boolean


Regards,
Patrick