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

Hiding Menu Items - Reader XI

New Here ,
Mar 22, 2013 Mar 22, 2013

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.

5.6K
Translate
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
LEGEND ,
Mar 22, 2013 Mar 22, 2013
Translate
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
Adobe Employee ,
Mar 22, 2013 Mar 22, 2013

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

Translate
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
Guest
Mar 27, 2013 Mar 27, 2013

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

Translate
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 ,
Mar 27, 2013 Mar 27, 2013

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.

Translate
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
Adobe Employee ,
Mar 27, 2013 Mar 27, 2013

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

Translate
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
Adobe Employee ,
Mar 27, 2013 Mar 27, 2013

See also http://forums.adobe.com/message/5183300#5183300 for related information.

Translate
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
Guest
Mar 27, 2013 Mar 27, 2013

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??

Translate
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
Adobe Employee ,
Mar 27, 2013 Mar 27, 2013
LATEST

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

Translate
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