" 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.
05-26-2005, 11:16 PM
srekcus
I would try this:
x = e.getX();
y = e.getY();
drawLine(x,y);
05-29-2005, 01:49 AM
sjalle
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.... :)