I am writing an JRE 5.0.0 app. The app has some HTML tips content that I display with a field2.BrowserField
. I'd like to launch the native browser when a user clicks certain links. I've read the docs for BrowserFieldListener, but that doesn't look like the solution.
[Edit]
Alternatively: invoke native browser with a local document. EG:
BrowserSession session = Browser.getDefaultSession();
session.displayPage("file:///Blark/");
[/Edit]
Thanks.
I decided to launch the system browser and feed it the local file.