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

Context menu - Combine Files: How to add shortcut and save no-questions ask?

Engaged ,
Nov 08, 2022 Nov 08, 2022

Copy link to clipboard

Copied

In Explorer context menu I have an item "Combine files in Acrobat".
This basically results in a binder1.pdf going thru a number of steps.

Q: Is there a way to edit this context menu, so :
a. it can be triggered using a hotkey and

b. the binder file is stored in the same folder as source file

All this 'no questions' asked.

Thanks.
(p.s. likely there are paid plug-ins / tools, but frankly, that is not something I am looking for)

TOPICS
Create PDFs , Scan documents and OCR

Views

1.5K

Translate

Translate

Report

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 ,
Nov 09, 2022 Nov 09, 2022

Copy link to clipboard

Copied

1. Edit it in what way, exactly?

2. Don't think so.

3. Don't think so.

Votes

Translate

Translate

Report

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
Engaged ,
Dec 01, 2022 Dec 01, 2022

Copy link to clipboard

Copied

Really sorry for not getting back on this - I am really sorry. It slipped my mind and also this combining files I do it just once in a while.
As said, right now I proceed as follows:

Explorer, go into sub folders, select a number of files (image files), then
1. r-click and "Combine files in Acrobat
2. click "Combine
3. click "Tools"

4. click "Scan and OCR"

5. click "Recognize text"

6. click "In this file"

7. click "Recognize Text" again

8. click "Close"

9. click "Save" a prompt shows up allowing me to add the name

 

I am seeking a way that steps 2 uptil and including 8 are "automated" - so I do not take click-click-click through all the steps, a kind of batch combine that ends up with a file name prompt.

What do you think?
Not possible I guess, unless at expensive costs.

Best regards and again, deeply sorry for not responding!

 

Votes

Translate

Translate

Report

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 27, 2023 Jan 27, 2023

Copy link to clipboard

Copied

Hey Adwul,

 

Maybe a little late, but I was looking around for a similar way to do this as you are, and found that using AutoHotkey is a pretty handy way to do this https://www.autohotkey.com/

 

AutoHotkey is a powerful little FREE tool that allows you to program specific key/mouse combinations along with a few other little effects that has definitely made my life easier, both professionally and at home. 

 

Once you've gotten familiar with AutoHotkey, you can make a new AutoHotkey script with this simple script in it to work through some of the steps of your problem.

^F10::
CombineFilesInAcrobat(){
     Send, +{F10}
     Loop, 4{
           Send, {down}

           Sleep, 50

      }
      Send, {Enter}
}

 

For a quick explanation of what this code means:

^F10:: - This is the hotkey combination that will execute the code below it when you press Control + F10 on your keyboard. You can choose any key combo you like, though be sure not to pick something that is already a hotkey you may want to use! I picked ctrl+f10 because shift+f10 is the windows default hotkey to open the Context Menu (same as right clicking)

 

CombineFilesInAcrobat(){ - This isn't stricly necessary, but it makes the following block of code into a function that can be easily called elsewhere.

 

Send, +{F10} - Acts as though you've pressed Shift+F10 on your keyboard, opening the context menu. 

 

 Loop, 4{
           Send, {down}

           Sleep, 50

      }

The Loop, 4 means that it will execute the next block of code 4 times. Youll need to change the 4 to however far down the context menu the option to Combine Files in Acrobat is when you right click a PDF. For me it's the 4th option, so I put 4. It will then press the down button on your keyboard, and then wait 50 thousandths of a second. For troubleshooting, it can be easier to change 50 to a bigger number so you can see what your computer is actual doing if it's not what you expect. You can also probably get away with no wait here, but I often like a wait in this type of program because it allows me to see what's happening, while still being nearly instant.

 

Send, {Enter} - Hits enter. Since we've moved your selection to Combine Files in Acrobat in the last block of code, this will combine the files in acrobat, and bam, you're done!

 

 

That was as far as I needed to go (I often need to reorganize the order of my files before hitting combine, so I don't want that step automated) however, I imagine with a bit of research on how to use autohotkey, you could get to step 8 pretty easily in a single keystroke sequence. Add a bit of a Sleep after you've gone as far as I have to give adobe time to combine your files, Then either find a hotkey to press "Combine" or you may have to find the mouse coordinates of the button, and have autohotkey perform a mouse click at those coordinates, etc. 

 

Hope this helps!

 

 

 

 

Votes

Translate

Translate

Report

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
Engaged ,
Jan 28, 2023 Jan 28, 2023

Copy link to clipboard

Copied

LATEST

Hi a28141201y7vc
Many thanks for your elaborate reply. Really appreciated. I am aware of the existence of Autohotkey and have used it for 1 specific case a verrry long time ago.
As for Acrobat, combining files as such is not so much of a problem, but actually it is about all the steps after files have been combined so as to OCR the file, i.e. running text recognition. In my previous post, all steps after step '2.'
Let's say a kind of -new- context menu item 'Combine and OCR files in Acrobat'.
It would be nice to have this as a native solution... 
I am just a simple end-user and have no knowledge at all of programming, but it seems to me that should be feasible for the Acrobat developers: combining the steps into 1 module and add that to the existing Combine Files.

Maybe, one day, they will do that,

 

Anyway, thanks again!

 

Votes

Translate

Translate

Report

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