Answered
In Button Properties, there is a way to add an action that will Open a file with the OS path and execute a window program. How do I do that by using Javascript? I have a project to run a firm customized VB program from Adobe acrobat by hitting a toolbar button. The missing link for this task is how to launch the external program from Adobe Javascript. Any help is greatly appreciated...
You can fire the BAT file with app.launchURL.
app.launchURL("file:///c/temp/ping.bat", false);
I'm not sure if you can do this directly from a button.
I call it from a trusted function in a folder level script.
Good Luck