I have an Applet which i'm loading through an HTML file with a list of parameters names and values. I would like to add the feature of being able to dynamically change param values via javascript.
is this possible and how can it be done?
thanking you much
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
You may be able to change the page DOM through JavaScript, but once an applet is initialized, any change of the page won't be reflected in the applet. To influence a running applet via JavaScript, you need to access its public fields and methods via LiveConnect, and react accordingly in your applet code. The Applets FAQ has some links about LiveConnect.