I tried the BrowserLauncher referenced below:
I had to make the following modification for it to run on Windows Me
} else if (osName.startsWith("Windows")) {
if (osName.indexOf("9") != -1) {
jvm = WINDOWS_9x;
} else if (osName.indexOf("Me") != -1) {
jvm = WINDOWS_9x;
} else {
jvm = WINDOWS_NT;
}
That program works very nicely.
CharlesAt 10:23 AM 2/1/2002 +0200, you wrote: >Check "BrowserLauncher" >(http://www.stanford.edu/~ejalbert/software/BrowserLauncher/). I'm using it >and it seems to work. > >Pasi > >-----Original Message----- =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
