-
How to X, Y coordinate?
" public boolean mouseDown (Event e, int x, int y)
{
drawLine();
mouseIsClicked = true;
return true;
}
"
I need to send drawline x and y postion of the mouse click, im not using MouseEvent because it didnt compile properly. What code should I use for getting those coordinates, Thanks.
-
I would try this:
x = e.getX();
y = e.getY();
drawLine(x,y);
-
There is no such methods available in the old Event, but the x & y of the mouse click
is already there, like... parameter 2 & 3 in the mouseDown method....
eschew obfuscation
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks