Hi !
I have a Java applet and a HTML/Javascript page.
I would like to call a Javascript function from my Java applet.
I tried the different ways to do that I found on the Web, but it does not work !
For example, to call the Modif(name) function in Javascript :
Is there someone how know something about it ?
Thanks in advance !!
I have a Java applet and a HTML/Javascript page.
I would like to call a Javascript function from my Java applet.
I tried the different ways to do that I found on the Web, but it does not work !
For example, to call the Modif(name) function in Javascript :
Code:
JSObject win = JSObject.getWindow(this);
String Arguments[] = {"Redford"};
win.call("Modif", Arguments);
Is there someone how know something about it ?
Thanks in advance !!