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

How keep Action Wizard from grabbing focus?

New Here ,
Jun 18, 2020 Jun 18, 2020

When I have Action Wizard work on multiple files (e.g. OCRing thousands of files in a folder hierarchy), Acrobat DC regains focus when starting to process each file, making it practically impossible to work on the PC while the actions are in progress.  Running Acrobat in a separate Windows virtual desktop didn't help.  (I lost count of the number of times I had to hit Alt-Tab just while writing this post.)  Thank you.

TOPICS
Edit and convert PDFs , How to , Scan documents and OCR
1.2K
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
2 ACCEPTED SOLUTIONS
Community Expert ,
Jun 19, 2020 Jun 19, 2020

I don't believe it's possible. Adobe designed the Action Wizard in Acrobat so it can't be used as a silent background process, so I would say this is actually on purpose.

View solution in original post

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
New Here ,
Jan 08, 2024 Jan 08, 2024
LATEST

After discovering this "new feature" in Pro 2020 upon "upgrading" from Pro X, I found a partial workaround to make Acrobat behave like it did before.

 

If you have access to an old version of Acrobat Pro (say, 9 or X),  you can create the action in that program, export it (as a .sequ file), and then imported in the newer version of Acrobat. The prompts in Pro 2020 indicate the action won't be able to take advantage of the "latest features" but it doesn't matter, since after experimenting I found there were no really beneficial "features" at all over and above the functionality provided in earlier Acrobat Pro versions (i.e., 9 and X). While the imported action is not editable, it does run silently, just as it did in the older version and without opening each file and requiring user prompting for each step, and otherwise slowing down the entire goal of the automation. What I see is simply a watch icon as the action executes. In Pro X, it would show me some information about the number of files to be processed and its progress. 

 

Alternatively, the same can be accomplished by direct code. Using a text editor, I see that the code inside the .sequ files is plaintext and relatively simple. For example, one of my actions is simply OCR'ing files from my scanner in a particular network folder, and it looks like this: 

 

secu file code.png

 

With some experimenting, one might be able to identify popular actions and the corresponding code inside the .sequ files and then write custom code into a .sequ file that can then be imported into the latest version of Acrobat. It seems that Acrobat still recognizes these old filetypes (code, really), even though the code in new .sequ files is XML. 

 

If I was OCR'ing a lot of files or a really large PDF, I would just start a new instance of Acrobat in Windows via the Run command and

acrobat.exe /n 

command. 

 

Why Adobe decided to force the action Wizard to grab focus and otherwise require more user input to execute the desired steps is beyond me. This seems to be a significant step backwards in functionality for many users like myself who have simple and small automation needs. If Adobe simply wanted to prevent large-scale batch file automation, it probably could've written some code to prevent that at a certain threshold. Instead it chose to dumb-down the program and remove features that users have come to rely upon. That seems to be the plague of Silicon Valley: make it "better" by eliminating features, but saying the simplified and less-usable software has "new" features, and provide little-to no warning (read: transparency) for buyers who are "upgrading" from older software. 

View solution in original post

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 ,
Jun 19, 2020 Jun 19, 2020

Hi,

Can you confirm the version of the software and of the operating system you have.

In Windows, it is possible to ask an application to remain in the background. Some Googling will be needed here.

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
New Here ,
Jun 19, 2020 Jun 19, 2020

I'm running Acrobat Pro DC 2015.006.30523 on Windows 10 Pro x64 2004 build 19041.329, experience pack 120.2202.130.0.  I see the post saying it's likely not possible by design was marked correct but hope there's a workaround.  I was proud of myself when I thought of running Acrobat in a "separate" Win10 virtual desktop, but even then it kept popping up...  I'd upgrade to the current version even though it's a subscription if it made a difference.  Thank you.  *j

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 ,
Jun 19, 2020 Jun 19, 2020

I don't believe it's possible. Adobe designed the Action Wizard in Acrobat so it can't be used as a silent background process, so I would say this is actually on purpose.

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 ,
Jun 19, 2020 Jun 19, 2020

try67 is right.

The only solution is to run batch processes with Acrobat Pro 9 or an older version…


Acrobate du PDF, InDesigner et Photoshopographe
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
New Here ,
Jan 08, 2024 Jan 08, 2024
LATEST

After discovering this "new feature" in Pro 2020 upon "upgrading" from Pro X, I found a partial workaround to make Acrobat behave like it did before.

 

If you have access to an old version of Acrobat Pro (say, 9 or X),  you can create the action in that program, export it (as a .sequ file), and then imported in the newer version of Acrobat. The prompts in Pro 2020 indicate the action won't be able to take advantage of the "latest features" but it doesn't matter, since after experimenting I found there were no really beneficial "features" at all over and above the functionality provided in earlier Acrobat Pro versions (i.e., 9 and X). While the imported action is not editable, it does run silently, just as it did in the older version and without opening each file and requiring user prompting for each step, and otherwise slowing down the entire goal of the automation. What I see is simply a watch icon as the action executes. In Pro X, it would show me some information about the number of files to be processed and its progress. 

 

Alternatively, the same can be accomplished by direct code. Using a text editor, I see that the code inside the .sequ files is plaintext and relatively simple. For example, one of my actions is simply OCR'ing files from my scanner in a particular network folder, and it looks like this: 

 

secu file code.png

 

With some experimenting, one might be able to identify popular actions and the corresponding code inside the .sequ files and then write custom code into a .sequ file that can then be imported into the latest version of Acrobat. It seems that Acrobat still recognizes these old filetypes (code, really), even though the code in new .sequ files is XML. 

 

If I was OCR'ing a lot of files or a really large PDF, I would just start a new instance of Acrobat in Windows via the Run command and

acrobat.exe /n 

command. 

 

Why Adobe decided to force the action Wizard to grab focus and otherwise require more user input to execute the desired steps is beyond me. This seems to be a significant step backwards in functionality for many users like myself who have simple and small automation needs. If Adobe simply wanted to prevent large-scale batch file automation, it probably could've written some code to prevent that at a certain threshold. Instead it chose to dumb-down the program and remove features that users have come to rely upon. That seems to be the plague of Silicon Valley: make it "better" by eliminating features, but saying the simplified and less-usable software has "new" features, and provide little-to no warning (read: transparency) for buyers who are "upgrading" from older software. 

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