Click to See Complete Forum and Search --> : Applet navigation


DrYap
09-12-2009, 01:47 PM
Hi, I've seen various examples of java applet menus around but there is never any code showing how to navigate the web browser from the applet.

Any help will be appreciated.

criterion9
09-12-2009, 06:07 PM
Someone might jump in and correct me as I haven't been creating applets in years but:

getAppletContext().showDocument(URL,target);

Should do it for ya.

DrYap
09-13-2009, 08:39 AM
Thanks, I thought there must be a function somewhere.