Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to record button click on action?

Explorer ,
Jan 15, 2020 Jan 15, 2020

How do you record click on a button in Action?

For example, at the Camera RAW, I want to click on the "Auto" button.

 

But it doesnt record the click.

 

Please help.  Thank you.

TOPICS
Actions and scripting
1.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Jan 15, 2020 Jan 15, 2020

I don't think Camera Raw has the ability to record things. Nor can you script Camera Raw. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 15, 2020 Jan 15, 2020

Some Plug-in have Action support programed in that the allow you to record some thing in action most plug-ins do not.  You can though change/customize  ACR defaults and may be able to set Auto as your default setting. However, Adobe ACR will use  existing ACR settings you have developed for a raw files or synced settings to or copied a sidecar files the  for  Raw file name. So you may be able to set your ACR default to Auto for RAW files that do not currently have ACR settings.

 

image.png

JJMack
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 15, 2020 Jan 15, 2020

If you expand Camera Raw Filter step you can see that action can record settings as values. Auto settings will be recorded as values not as instruction.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 04, 2020 Mar 04, 2020

There is no other way to record on the click on the AUTO button right?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 04, 2020 Mar 04, 2020

I am not sure that I understand what you want to ask. You can click on Auto button - yes - to record settings. Using actions there is no other way to, for example, record step to click on Auto button and to ask Camera Raw to determine optimal auto settings for that image if that is what you want to ask.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
People's Champ ,
Mar 04, 2020 Mar 04, 2020
LATEST

use script instead of actions

try {
    var file = new File("/c/1/DSC_9000.NEF"); // your file here

    var d = new ActionDescriptor();
    d.putBoolean(stringIDToTypeID("dontRecord"), true);
    d.putBoolean(stringIDToTypeID("forceNotify"), true);
    d.putPath(stringIDToTypeID("null"), file);

    var d1 = new ActionDescriptor();

    d1.putBoolean(charIDToTypeID("AuTn"), true); // Auto Button

    d.putObject(stringIDToTypeID("as"), stringIDToTypeID("Adobe Camera Raw"), d1);
    d.putBoolean(stringIDToTypeID("smartObject"), true);
    d.putBoolean(stringIDToTypeID("overrideOpen"), true);
    executeAction(stringIDToTypeID("open"), d, DialogModes.ALL);
    }
catch (e) { alert(e); }
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines