Log in

View Full Version : Java chat room on website


Arkorobotics
21-01-2006, 20:27
Does anyone know the code you plug in to do java chat rooms in your website? I want people to create there own username and password so we can all talk in a chat room when there is not meeting going on. How do I plug in the java app? :confused:

Ryan M.
21-01-2006, 20:37
So, you have a Java applet which you want to put on an HTML page, correct?

Something like this should work:
<applet width="XXX" height="XXX" code="address/to/applet.class"></applet>

Arkorobotics
21-01-2006, 21:06
So, you have a Java applet which you want to put on an HTML page, correct?

Something like this should work:
<applet width="XXX" height="XXX" code="address/to/applet.class"></applet>

Oh cool thanks man. :)