Hello,
I'm searching to open external pdf file from an embedded flash (a user interface with many animated buttons to simplify the navigation on a CD-Rom). I don't want to display my pdf file in a browser, just in acrobat reader.
I read in a document from pdfscripting.com we can communicate between actionscript/javascript that way:
In flash : call the function : ExternalInterface.call"Myalert", "Hello Pdf");
In Acrobat : Using the function javascript at the document level : function Myalert(cMsg) {app.alert.(cMsg,3);}
Its Ok for Alert.
To open a file the javascript code is :
app.opendoc("mydoc.pdf";this);
When i change the "app.alert" with the "app.opendoc" the javascript console display "app.opendoc is not a function"
Is anybody know what kind of code is efficient to to this.