> I have an applet who is using mshtml to access an html page.
> I want to transform all the code using this api to code who is standard java
> (sun).
> Do you know an html page, a tutorial, to do this ?
I don't think you can't access the page's HTML DOM from a Java Applet

Signature
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
George Birbilis <birbilis@kagi.com>
Microsoft Most Valuable Professional
MVP J# for 2004, 2005
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ QuickTime (Delphi & ActiveX: VB, PowerPoint, .NET)
+ Plugs (InterProcess/Internet communication)
http://www.kagi.com/birbilis
+ Robotics
http://www.mech.upatras.gr/~robgroup
........................................................................
gopikrishnam@gmail.com - 09 May 2005 12:36 GMT
You could access page's HTML DOM using netscape.javascript.* APIs.
For example,
JSObject win = JSObject.getWindow(this);
JSObject doc = win.getMember("document");
Here doc represents IHTMLDocment2.
Thanks,
Gopi[MSFT]