The java script reference for Acrobat 6.0 confirms that the format of the command is unchanged from version 5.05. So far I do not have any good work arounds. Is any one else having this problem or any other problems with java scripts in 6.0?
I have tried this in Windows 2000 and Windows NT with the same results. Any help would be greatly appreciated.
Tobias
The description of the disclosed property in the JS reference is:
"A boolean property that determines whether the document should be
accessible to
JavaScripts in other documents.
The two methods app.openDoc and app.activeDocs check the disclosed
property of the document before returning its Doc Object."
What you need to do is in the PDFs that you want to open using the
app.openDoc() method is add some document level JavaScript that is run
on each open.
If you add this document level javascript, then it should work fine.
docOpen()
{
this.disclosed = true;
}
docOpen();
Hope this helps.
- Chris.
___________________________________
Chris Dahl - CTO, Solutions
ARTS PDF
chris...@artspdf.com
http://www.artspdf.com/
Kennet...@adobeforums.com wrote in message news:<2ccdc...@webx.la2eafNXanI>...