M
morenull
hello,
I am pretty new to the whole applet world, but have a good
understanding of Java in general, so please forgive my newbieness.
Here is the situation that I am trying to work out:
1. homepage.html has javascript to launch a new window which launches
an applet:
[homepage.html]
<script language="javascript" type="text/javascript">
...
console = window.open("some.html","some", "some,options");
...
if (event) { console.document.Foo.methodX("blah"); }
...
</script>
[some.html]
...
<applet name="Foo" id="Foo" code="FooApplet.class"
codebase="C:\working"></applet>
...
2. some.html links to another page, another.html
and, here is the question:
(drum rrrrrrrrrrrrrrrrrrrrrrrolllllllllllllll...)
is it possible for 'another.html' to somehow control the applet (Foo)
invoked by 'some.html'? for example, is it possible for
'homepage.html' to pass the reference <console> to 'another.html'? or
is there some other way that 'another.html' would be able to see the
applet <Foo>?
Thank you for any input you have!
--francisco--
I am pretty new to the whole applet world, but have a good
understanding of Java in general, so please forgive my newbieness.
Here is the situation that I am trying to work out:
1. homepage.html has javascript to launch a new window which launches
an applet:
[homepage.html]
<script language="javascript" type="text/javascript">
...
console = window.open("some.html","some", "some,options");
...
if (event) { console.document.Foo.methodX("blah"); }
...
</script>
[some.html]
...
<applet name="Foo" id="Foo" code="FooApplet.class"
codebase="C:\working"></applet>
...
2. some.html links to another page, another.html
and, here is the question:
(drum rrrrrrrrrrrrrrrrrrrrrrrolllllllllllllll...)
is it possible for 'another.html' to somehow control the applet (Foo)
invoked by 'some.html'? for example, is it possible for
'homepage.html' to pass the reference <console> to 'another.html'? or
is there some other way that 'another.html' would be able to see the
applet <Foo>?
Thank you for any input you have!
--francisco--