Hi,Yeah I thought that might be the result, the problem is that you need to be in a secure place ( app initialisation, console) to execute code to hide the menubarRegardsMalcolm
Hi,The menu bar is more difficult, the easiest route is to put the PDF into fullscreen mode but this might not give you the requried look.app.fs.isFullScreen = true;Hope this helpsMalcolm
Hi,Any kind of dialogue will show the warning message.The only other suggestion would be to hide a helpful box close to the field/section and have this show when the user enters the field/section and hide when they leave it.RegardsMalcolm
Hi,The simple answer is that you cannot change that as it is there to warn the user that this is not a Acrobat/Reader dialogue box and has been shown by the form.The complex answer is that as I understand it if the document was certified and the user had installed and trusted the certificate of the ...
Hi,Assuming you are runnig in Acrobat or Reader ( and not in a browser) then this should do what you wantapp.toolbar = false; ( set to true, to show them again)This actually can change the Users preference so you should probably code to restore the state after the document has been viewed.RegardsMal...
Hi Chomp,I am not sure subform sets are necessary if you define your subforms like this Form -> Section1 ( subform) -> Section2 ( subform) -> Section3 ( subform)i.e. section1 contains the subform section2 and section2 contains the section3 subformeach section would need to...
Hi,It doesn't auto complete because it is a Acrobat JavaScript function and this is passed through to the Acrobat application when it is called, therefore to find the documentation you need to check the Acrobat SDK JavaScript guide document.http://www.adobe.com/devnet/acrobatBecause of this the func...
Hi,you should be able to usevar otherDoc = app.openDoc("/c/temp/myDoc.pdf");and you could also look at event.target.path to get you the path of the current file if you want to use a relative path.RegardsMalcolm
Hi,The problem seems to be the fact that the action you are performing using the checkbox causes the document to be redrawn and this appears to be what is causing your checkbox to loose its value. ( could possible be a bug in designer, but as I would recommend not placing interactive elements on the...
Hi,Can you clarify where your script is? ( click event, initialise event, etc.....)and what is the myPage object, is it the current Page?RegardsMalcolm