"J. Lee Dixon" wrote:

> I assume it is some type of race condition, but I don't know what to do
> about it.  Any ideas?  Should I not be updating swing components from
> within a Behavior?  If not then where?
Swing does not support multiple threads. You have to use
javax.swing.SwingUtilities.invokeAndWait(Runnable doRun) or
invokeLater()
to update components from a different thread.

Niklas

===========================================================================
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".

Reply via email to