There is any way with a Script apply on a button to be able to open
Attachment navigation Panel.
Most of the users uses Reader 7.0.
I tried with a action Execute Menu>View>Navigation attachment panel
but does'nt work with Reader 7.0
I have create the form with Acrobat Pro 8.0
Thanks
There are also other problems, in Acrobat 8 the menu items that can be run from a document are restricted with a list in the registry. Although I think the view navigation panels items are available, but I'm not sure.
And finally, there is the problem you are seeing, which is that the internal menu item name for the showing and hiding the Attachments Panel is different between Acrobat 8 and Acrobat 7.
But you could use a script to fix this problem:
if(app.viewerVersion >= 8)
app.execMenuItem("ShowHideFileAttachement");
else
app.execMenuItem("ShowHideAttachements");
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script