/build/static/layout/Breadcrumb_cap_w.png

Adobe Reader & Adobe Pro

Hello,

We have a requirement were in both these application should be installed on the same machine. My question is will there be issues in installing & uninstalling these application on the same machine....

The deplyment process here is we split user & machine components & install machine side on all pcs, Hence both the application machine side will be installed on the same pc.

Thanks
skj

0 Comments   [ + ] Show comments

Answers (3)

Posted by: urban_diver 18 years ago
Orange Senior Belt
0
Adobe Pro by default installs Adobe Reader.
Posted by: skj 18 years ago
Second Degree Brown Belt
0
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
Posted by: hpizzel 17 years ago
Senior Yellow Belt
0
Step 1: Create a javascript to list all of the cNames for the Menu Items and Toolbar Items
Step 2: Find the correct cNames for your HideMenu.js syntax
Step 3: Update you javascripts and place into Javascripts folder

Script 1: ListItems.js

//Open Javascript Console
//console.show();

//List Toolbar Buttons in the Console
var toolbarItems = app.listToolbarButtons()
for( var i in toolbarItems)
console.println(toolbarItems + "\n")

//List Menu Items in the Console
var menuItems = app.listMenuItems()
for( var i in menuItems)
console.println(menuItems + "\n")

Script 2) HideMenu.js

//Hides Help > Accessibility Information Online
app.hideMenuItem("AccessOnline");

//Hides Help > Adobe Expert Support
app.hideMenuItem("AdobeExpertSupport");

This should work for you.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ