Re: [JAVA3D] Getting my Canvas3D to display without requiring focus...

2005-06-13 Thread Omer Haybat
requestFocus() === 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

Re: [JAVA3D] Getting my Canvas3D to display without requiring focus...

2005-06-13 Thread Omer Haybat
canvas3D.setFocusable(true); canvas3D.requestFocus(); === 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

[JAVA3D] Getting my Canvas3D to display without requiring focus...

2005-06-11 Thread Eli Dylan Lorimer
Hi,I'm embedding a Canvas3D into a swing JPanel. It works well except my 3D scene doesn't display until I manually click a few buttons in my app. Does anyone know how I can get it to automatically display?Here's my Canvas3D code:        Canvas3D canvas3D = new Canvas3D( null );