I have a page with some
applets on it. In Netscape I get this error when I leave the page.
Warning: Thread.suspend() was called; Navigator deadlock might result
Why? Then when I close the window I get an windows warning that Netscape committed an illegal act.
OK one of the applets starts a
thread that scrolls some text. I suspend that thread in stop() not the thread running the applet.
public void stop() {
if (runner.isAlive())
runner.suspend();
}
Netscape does freeze trying to load a different applet from another page about half the time.
[This message has been edited by Randall Twede (edited February 21, 2001).]