| Author |
Position the tooltip
|
Neeba Rebbaca
Ranch Hand
Joined: Oct 21, 2008
Posts: 116
|
|
Hi,
I have written a code for displaying a rectangle object and displaying tooltip on MouseOver. My problem is, on placing the mouse over the rectange object, the tooltip getting displayed on the top of the panel, then displaying over the object. How to avoid displaying on the top of the panel.
Here is my code.
|
 |
Akhilesh Trivedi
Ranch Hand
Joined: Jun 22, 2005
Posts: 1493
|
|
I am not sure but I just found a similar thread here on ranch itself.
http://www.coderanch.com/t/465626/GUI/java/Tooltip-Line-or-Rectangle
|
Keep Smiling Always — My life is smoother when running silent. -paul
[FAQs] [Certification Guides] [The Linux Documentation Project]
|
 |
Neeba Rebbaca
Ranch Hand
Joined: Oct 21, 2008
Posts: 116
|
|
|
But that doesn't help me. still facing the same problem.
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4163
|
|
Regardless of all else, do NOT setBackground(...) or setdoubleBuffered(...) or otherwise change the state of the component in any way in a painting method override (line 51 of the posted code).
Also, adding a component to its viewport is NOT the correct way to use a JScrollPane. Read the API and follow the link to the tutorial to learn how to correctly use scroll panes.
You would also do well to get rid of all redundant code before posting on a forum.
setting the content pane's layout to BorderLayout -- which it is, by default (07)setBackground calls that are irrelevant to the stated problem (11, 29, 51)setColor(...) calls that each supersede tha last (48, 50, 53)
And if this is a standalone application, as evidenced by a main(...) method, why do you extend JApplet? Applets are meant for diaply in a browser.
|
luck, db
There are no new questions, but there may be new answers.
|
 |
Neeba Rebbaca
Ranch Hand
Joined: Oct 21, 2008
Posts: 116
|
|
Thanks for the reply.
I'm debugging the code, so i added the main, actually it is a web application. Still I could not able to fix the problem. I would be very help if someone say me, where i went wrong.
Thanks in advance.
|
 |
 |
|
|
subject: Position the tooltip
|
|
|