Re: [JAVA3D] ToolTip!

2002-07-11 Thread Brad Christiansen
Hi, I am a bit of a novice at Java3D so this might not be a very good idea, but I think you could get tooltips to work along these lines: Add a mouse listener and listen for move movements on your Canvas3D. When you detect that a movement hasn't occured for a set period of time you could do a

[JAVA3D] ToolTip!

2002-07-11 Thread Ashish Aggarwal
Hello all, Does anybody knows how to show ToolTip when mouse is moved over a Shape3D object (not a swing component, which is easy by making swing component a heavy component as given in the faq) , such as Sphere, cone etc in Canvas3D. I read the faq and other stuff but couldn't make out. Please t

Re: [JAVA3D] ToolTip still doesn't work

2001-07-02 Thread Joachim Diepstraten
Hi > But my ToolTips still only flash up for a few milliseconds and then > disappear again? Any reason why? Well meanwhile I looked up in the bug database and it seems it's related actually to JDK1.3.0 and Windows. Heavyweight ToolTips don't show up or just flash up (BUG# 4339690) EOF, J.D. --

[JAVA3D] ToolTip still doesn't work

2001-07-02 Thread Joachim Diepstraten
Hi Though I added the two lines descriped in the J3D FAQ (which one of the lines is wrong btw. It's ToolTipManager.sharedInstance().setLightWeightPopupEnabled(false); and not ToolTipManager.sharedInstance().setDefaultLightWeightPopupEnabled(false); ) But my ToolTips still only flash up for a

Re: [JAVA3D] Tooltip

2001-03-30 Thread Kovalan Muniandy
Attached you will find custom classes for handling tooltip. (See attached file: ToolTip.java)(See attached file: ToolTipGenerator.java) (See attached file: ToolTipTrigger.java) Note: It is important that main window of type Frame hosts the tooltip (shown below as "frame"). If you have a better

Re: [JAVA3D] Tooltip

2001-03-23 Thread BRANDY Cyril
x27;t understand how to use it. Can somedy help me to understand how Raster works ? -Message d'origine- De: Artur Biesiadowski [mailto:[EMAIL PROTECTED]] Date: vendredi 23 mars 2001 15:14 Ŕ: [EMAIL PROTECTED] Objet: Re: [JAVA3D] Tooltip BRANDY Cyril wrote: > > Is it possible to dr

Re: [JAVA3D] Tooltip

2001-03-23 Thread Artur Biesiadowski
BRANDY Cyril wrote: > > Is it possible to draw a tooltip box that follow the mouse on a canvas3D ? Either try to play with heavyweight window (if you want it to possibly go outside canvas) or check out Raster class. Artur =

[JAVA3D] Tooltip

2001-03-23 Thread BRANDY Cyril
Is it possible to draw a tooltip box that follow the mouse on a canvas3D ? Thanks Cyril * : [EMAIL PROTECTED] === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTERE

Re: [JAVA3D] ToolTip on Canvas3D

2001-02-22 Thread Paul Byrne
t; >Subject: Re: [JAVA3D] ToolTip on Canvas3D >To: [EMAIL PROTECTED] > >I have tried using this: (from http://www.j3d.org/faq/swing.html) > >JPopupMenu.setDefaultLightWeightPopupEnabled(false); >ToolTipManager.sharedInstance().setDefaultLightWeightPopupEnabled(false); > >it do

Re: [JAVA3D] ToolTip on Canvas3D

2001-02-22 Thread Qiuli Sun
aguer Yagan Sent: Thursday, February 22, 2001 6:46 AM To: [EMAIL PROTECTED] Subject: Re: [JAVA3D] ToolTip on Canvas3D I have tried using this: (from http://www.j3d.org/faq/swing.html) JPopupMenu.setDefaultLightWeightPopupEnabled(false); ToolTipManager.sharedInstance().setDefaultLightWeightPopupEn

Re: [JAVA3D] ToolTip on Canvas3D

2001-02-22 Thread J. Lee Dixon
ould cross the boundary of the Canvas3D. -Lee > -Original Message- > From: Daniel Balaguer Yagan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 22, 2001 7:46 AM > To: [EMAIL PROTECTED] > Subject: Re: [JAVA3D] ToolTip on Canvas3D > > > I have tried using

Re: [JAVA3D] ToolTip on Canvas3D

2001-02-22 Thread Daniel Balaguer Yagan
PROTECTED]] Sent: Thursday, February 22, 2001 5:32 AM To: [EMAIL PROTECTED] Subject: [JAVA3D] ToolTip on Canvas3D Hi, Has anyone have implemented a tooltip (help bubbles) on a Canvas3D? Thanks, Kovalan === To unsubscribe, send

[JAVA3D] ToolTip on Canvas3D

2001-02-21 Thread Kovalan Muniandy
Hi, Has anyone have implemented a tooltip (help bubbles) on a Canvas3D? Thanks, Kovalan === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general hel

[JAVA3D] ToolTip problem when using ToolTipManager.sharedInstance().setLightWeightPopupEnabled(false)

2000-12-10 Thread Qiuli Sun
Hi, I have a problem with ToolTips. I use the way described in www.j3d.org which says that if following code: JPopupMenu.setDefaultLightWeightPopupEnabled(false); ToolTipManager.sharedInstance().setLightWeightPopupEnabled(false); is used, the tooltip will show up. I tried. It never works with

Re: [JAVA3D] Tooltip functionality for Canvas3D

1999-10-19 Thread Jon Barrilleaux
This is a subject that is not as simple as it may seem. There are defintely hacks such as the one that you suggested. What you have to do and how hard you have to work to get it just depends on how general and "nice" you want to make in-scene tooltips. (Time for shameless a plug.) In my upcomin

[JAVA3D] Tooltip functionality for Canvas3D

1999-10-18 Thread Shih-Jen Hsu
Hi All! My project is currently investigating Java3D, and one of the functionalities we would need is tooltips for Canvas3D. Since Tooltips only exist in JComponent, which Canvas3D does not derive from, I'm not sure how to get a nice tooltip for an arbitrary position inside the Canvas3D. I've t