Can javascript call applet methods in explorer?
Is it possible to call the start() and stop() methods of an applet in explorer 5? I know how to do it using netscape, document.appletname.start(); and that works, but I just get errors in explorer. Any suggestions?
[228 byte] By [
ryanalex] at [2007-9-26 2:35:21]

The code I used was:document.appletname.stop(); ordocument.applets["appletname"].stop();Neither worked, I just got this error:"Object doesn't support this property or method"but I know the applet has a stop() method because I wrote it!