Results 1 to 4 of 4
- 10-24-2012, 12:46 PM #1
Member
- Join Date
- Apr 2012
- Posts
- 16
- Rep Power
- 0
[Java 7 SE]Mouse Cursor like in Enginering Applications
- 10-24-2012, 03:34 PM #2
Re: [Java 7 SE]Mouse Cursor like in Enginering Applications
I'm not psychic, but it sounds like you're missing a call to super.paintComponent(). But I really can't tell without seeing an SSCCE.
How to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
- 10-24-2012, 04:49 PM #3
Member
- Join Date
- Apr 2012
- Posts
- 16
- Rep Power
- 0
Re: [Java 7 SE]Mouse Cursor like in Enginering Applications
THANKS YOU VERY MUCH super.paintComponent() was missing.
Now the cursor works fine!!! I know my entry post was bad, but I could not explain the problem in better way. Here is now working method for cross cursor in JPanel "Workspace": public void mouseClicked(final MouseEvent me)
{
this.m_iMouseXPos=(int)me.getPoint().getX();
this.m_iMouseYPos=(int)me.getPoint().getY();
final Graphics g=this.getGraphics();
g.drawString("("+Integer.toString(this.m_iMouseXPo s)+", "
+Integer.toString(this.m_iMouseYPos)+")", this.m_iMouseXPos-10,
this.m_iMouseYPos+10);
// g.dispose();
}
- 10-24-2012, 05:36 PM #4
Similar Threads
-
How to control gain between mouse movement and cursor movement ?
By DrPete in forum New To JavaReplies: 2Last Post: 03-10-2012, 04:26 AM -
Java cursor problem
By gaj7 in forum Java AppletsReplies: 4Last Post: 01-13-2012, 04:11 PM -
Custom Cursor Mouse
By mistercaste in forum Java 2DReplies: 3Last Post: 03-24-2010, 08:56 PM -
button that runs away from the mouse cursor
By MartinBenes71 in forum New To JavaReplies: 1Last Post: 01-28-2010, 08:00 AM -
change the mouse cursor - crosshair cursor
By cassysumandak in forum New To JavaReplies: 1Last Post: 09-28-2009, 01:57 AM


LinkBack URL
About LinkBacks![[Java 7 SE]Mouse Cursor like in Enginering Applications-mousemovelinesdonotvanish.png](http://www.java-forums.org/attachments/awt-swing/4176d1351075590t-java-7-se-mouse-cursor-like-enginering-applications-mousemovelinesdonotvanish.png)
Reply With Quote
Bookmarks