javascript control embeded PDF
Hello people it's been a long time.
Here's my problem.
I'm embedding a PDF file like so:
Code:
<OBJECT name="monkey" id="monkey" CLASSID="clsid:CA8A9780-280D-11CF-A24D-444553540000" WIDTH=450 HEIGHT=450>
<PARAM NAME="SRC" VALUE="test.pdf">
</OBJECT>
PDF's have built in javascript so i have a function within the PDF's javascript called helloworld() ;)
What I want to do is call the PDF's helloworld() function from the Parent HTML page using javascript I would have thought that :
if i put :
Code:
document.all.monkey.helloworld()
That this would do the trick but it doesn't.
Can't find a single web referenc on this so please someone help...
Cheers people.