AAre the methods of embedded plugins available the same way that they
are in a 'normal' Netscape browser window?
For example:
<EMBED TYPE=application/x-Netscape-MyPlugin NAME="external" WIDTH=100
HEIGHT=10>
creates an instance of the plugin as expected. However, the methods
associated with it do not seem to be accessable. The plugin exposes
several methods (one called getGUID) which I expected to be abble to
access with "document.external.getGUID()" but this request never
returns. I get the "Before..." message but the "...after" never shows
up.
alert("Before getGUID() request...");
var string = document.external.getGUID();
alert("...after getGUID() request...");
I have copied the plugin and its associated class file to the mozilla
plugin area. When I try this same thing with the Netscape browser, it
works without a hitch.
Any ideas?