Script for Camera Raw Presets
Hi could anyone help creating a script for photoshop and Camera Raw.
What I would like done is a script that would allow me to run a preset from Camera Raw into Photoshop.
Similar to the works of Stephen_A_Marsh's Camera Raw Auto Filter:
(function () {
// Camera Raw Filter - Auto
var desc1 = new ActionDescriptor();
desc1.putBoolean(charIDToTypeID("AuTn"), true); // AuTn = Auto
executeAction(stringIDToTypeID('Adobe Camera Raw Filter'), desc1, DialogModes.NO);
})();
or:
autoCRF();
function autoCRF() {
// Camera Raw Filter - Auto
var desc1 = new ActionDescriptor();
desc1.putBoolean(charIDToTypeID("AuTn"), true); // AuTn = Auto
executeAction(stringIDToTypeID('Adobe Camera Raw Filter'), desc1, DialogModes.NO);
}I would like a similar one that allows me to select a preset within Camera Raw and then if you could note how I could perhaps edit the code to replace one preset with another for different uses.
Shout out to all the coders that do this, because just looking at the code, as simple as some youtube videos make it out to be, I don't think I would be able to understand most of what is going on in javascript, or any code for that matter.
Coding isn't something I'm good at in anyway, so if it is too much to ask I can definitely understand.
Thanks for taking the time to read and possibly assist with this.
