cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Adobe Reader & Adobe Pro

Our requirement is v need to have both adobe reader & acrobat pro application on the same machine when specific user who has license to Adobe acrobat pro, When double clicks on .pdf file should open with Adobe acrobat pro software else with Adobe reader.

So we need a script while login should check the users license info & launch the software, Hope i have not confused : (

Thanks in advance 4ur help
skj
(1) Reply
How do i hide these two menu?
acrobat -> Help ->Acrobat Expert Support
acrobat -> Help ->Accessibility Information Online

Our requirement is to Hide these options in the package, so i have written a script to do that, its hiding most of the option but only the above two is not happening your suggession is appreciated.

Below is the MenuHide.js Script
---------------------------------------------------------------
//disables Online Support
app.hideMenuItem("OnlineSupport");

//disables System Information
app.hideMenuItem("SystemInformation");

//disables Detect and Repair
app.hideMenuItem("DetectAndRepair");

//hides View > ToolBars
app.hideMenuItem("ToolBars");


//hides File > Print Me Internet Printing
app.hideMenuItem("EFI:PrintMe");

//disables Updates
app.hideMenuItem("Updates");

//disables Acrobat Online
app.hideMenuItem("AdobeOnline");

//disables Acrobat Expert Support
app.hideMenuItem("Acrobat Expert Support");

//disables Accessibility Information Online
app.hideMenuItem("AccessibilityInformationOnline");
------------------------------------------------------------------
Thanks
skj