cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Toolbar on Static ( print version ) of Adobe form

Former Member
0 Kudos

Hello Gurus,

I have requirement wherein i need to disable the Toolbar or disable "Save As " button. The form is not the interactive, its a simple adobe print form. if disabling is not possibel is there any way to issue error message or cancel save action using Java script/form calc.

Thanks,

Supriya.

Accepted Solutions (0)

Answers (2)

Answers (2)

ali_eshaghibeni
Participant
0 Kudos

this two files could be helpful for form scripting some of this scripts can work in offline pdfs or reports:

http://help.adobe.com/en_US/livecycle/9.0/LiveCycle_Designer_Scripting_Basics.pdf

ali_eshaghibeni
Participant
0 Kudos

HI

I think this may help you,

http://blogs.adobe.com/dmcmahon/2009/11/11/adobe-reader-how-to-disable-toolbar-buttons-and-menu-item...

try this code in your subform INITIAL event:

app.hideMenuItem("WebServices:CreatePDF");

app.hideToolbarButton("Weblink:CreatePDF");

// [File - Collaborate], plus toolbar button

app.hideMenuItem("Annots:FileCollaboration");

app.hideToolbarButton("Annots:CollabToolButton");

app.hideToolbarButton("CommentTask");

app.hideToolbarButton("SigTaskButton");



Hope This Helps,