Is there a way to enable a hyperlink on a java applet? I want to make it so that the viewer can click on the applet and that will take them to my page. Is there a way to do this?
Printable View
Is there a way to enable a hyperlink on a java applet? I want to make it so that the viewer can click on the applet and that will take them to my page. Is there a way to do this?
You could just put a mouselistener on a label that is formatted to look like a hyperlink then do something like
getAppletContext().showDocument(new URL("http://www.javaboutique.com"));