Skip to main content
Participant
October 20, 2022
Question

Action makes a difference in Upright Vertical

  • October 20, 2022
  • 1 reply
  • 91 views

While doing a Geometry correction - Ctrl+Shift+A (Camera Raw) and then clicking the Vertical from Geometry option, My images are getting Vertical correction perfectly.

 

While I am trying to make this as an action, It behaves differently and then Vertical Correction is wrong!

 

Can anyone tell me what should I check to get this corrected!

 

Looking forward for the help!

This topic has been closed for replies.

1 reply

Stephen Marsh
Community Expert
Community Expert
October 20, 2022

This is the Camera Raw filter in Photoshop (not the Adobe Camera Raw plug-in, external to Photoshop)? ... I'm not sure, but you could try a script, which can be recorded into an Action as a step:

 

/*
https://community.adobe.com/t5/photoshop/jsx-gt-camera-raw-filter-gt-transform-possible/m-p/11197302?page=1#M338216
JSX > Camera Raw Filter > Transform. Possible?

Camera Raw Filter - Transform Values:
1 = Auto, 2 = Full, 3 = Level, 4 = Vertical
*/
transformCRF(transValue = 4);

function transformCRF() {
    var actDesc = new ActionDescriptor();
    var transCode = charIDToTypeID("PerU");
    actDesc.putInteger(transCode, transValue);
    executeAction(stringIDToTypeID("Adobe Camera Raw Filter"), actDesc, DialogModes.NO);
}

 

  1. Copy the code text to the clipboard
  2. Open a new blank file in a plain-text editor (not in a word processor)
  3. Paste the code in
  4. Save the text file as .txt
  5. Rename the file extension from .txt to .jsx
  6. Install or browse to the .jsx file to run (see below)

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html