From: Finn B. <bc...@us...> - 2000-11-14 20:36:21
|
Update of /cvsroot/jython/htdocs/applets In directory slayer.i.sourceforge.net:/tmp/cvs-serv27230 Modified Files: index.ht Log Message: Give the HelloWorld applet a name and make the JythonLoader wait for that name to become avilable. Index: index.ht =================================================================== RCS file: /cvsroot/jython/htdocs/applets/index.ht,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** index.ht 2000/11/12 22:50:30 1.1 --- index.ht 2000/11/14 20:36:18 1.2 *************** *** 11,14 **** --- 11,15 ---- <CENTER> <APPLET Code="JythonLoader" WIDTH="220" HEIGHT="90" ALIGN="BOTTOM"> + <param name=waitFor value="HelloWorld"> </APPLET> </CENTER> *************** *** 22,28 **** <P>Once the library has loaded, your first Jython applet will appear below: <CENTER> ! <APPLET ARCHIVE="appletdemo.jar" CODE="HelloWorld" WIDTH="160" HEIGHT="50" ALIGN="BOTTOM" alt="This browser doesn't support JDK 1.1 applets."> ! <PARAM NAME="cabbase0" VALUE="appletdemo.cab"> ! <H3>Something has gone wrong loading this applet.</H3> </APPLET> </CENTER> --- 23,33 ---- <P>Once the library has loaded, your first Jython applet will appear below: <CENTER> ! <APPLET CODE="HelloWorld" WIDTH="160" HEIGHT="50" ! ARCHIVE="appletdemo.jar" ! NAME="HelloWorld" ! ALIGN="BOTTOM" ! alt="This browser doesn't support JDK 1.1 applets."> ! <PARAM NAME="cabbase0" VALUE="appletdemo.cab"> ! <H3>Something has gone wrong loading this applet.</H3> </APPLET> </CENTER> |