Copy link to clipboard
Copied
I have used the Customization Wizard for XI and created an MST that turns off all of the "Online Services", plus a HideMenu.js and registry key entries to hide several menu items.
There are 3 menu items that I have been unable to discover how to hide:
1. The "Sign, add text or send a document for signature" button on the tools menu.
2. The "Sign" item at the far right of the toolbar.
3. The "Get Documents Signed..." File menu item.
They all seem to open the "Sign" menu bar with the "Work with Certificates" menu. All items under 'Work with Certificates" are grayed out.
I have tried several entries in the HideMenu.js that came up in a Google searches, but not luck.
Any suggestions would be appreciated.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
You can only disable the items via reg prefs as documented in the Wizard Guide and the Pref Ref: http://www.adobe.com/devnet-docs/acrobatetk/.
The reg pref do not disable the EchoSign items under the file menu, splash page, and perhaps elsewhere. This will probably change in upcoming releases.
With respect to the Tools Panels on the right, muck around with creating custom toolbars and see if you get what you want (if you haven't already).
hth,
Ben
Copy link to clipboard
Copied
brogers - That's not quite true. I played with the menu items and it appears that the Adobe Acrobat Engineering rather than apply the proper menu item names as is documented in the Acrobat SDK basically used object names instead.
MHunter86 - Try this JavaScript in a file:
app.hideMenuItem("SPAObject 46"); //This is the Get Signed... menu item
Other menu items using this scheme:
app.hideMenuItem("SPAObject 47"); //This is Create PDF Online
app.hideMenuItem("SPAObject 51"); //This is Share Files using SendNow Online
Copy link to clipboard
Copied
Sabian Zildjian - Thank you for the help. In my case, I used "SPAOject 23" to hide the "Get Documents Signed..." item under File.
I am still looking to hide the:
1. "Sign" item at the far right of the toolbar.
2. "Sign, add text or send a document for signature" toolbar button.
Copy link to clipboard
Copied
My answer regarding prefs is correct above: The Preference Reference describes how to turn off EchoSign features. See http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/FeatureLockdown.html#SigningwithEc....
You can also use the master key to turn off all services. You cannot at the moment get rid of the items under File.
Ben
Copy link to clipboard
Copied
See also http://forums.adobe.com/message/5183300#5183300 for related information.
Copy link to clipboard
Copied
Mhunter96 - What that means is that the SPAObject # is different for each version/install/machine. It's likely not a stable name to use. Why Adobe Engineering used this type of scheme for the services menues is a mystery. Perhaps it allows them flexibility to change it on the fly??
Copy link to clipboard
Copied
You're right. The only supported methods are the documented methods using JS, the registry, or toolbar customizations (through the UI or registry). Trying anything else is probably a waste of your time, but who knows: you may get lucky.
Ben
Find more inspiration, events, and resources on the new Adobe Community
Explore Now