|
Properties
|
int getX, int getY and int getBn are used with onmousemove,onmouseup and onmousedown getBn is a value of 1-6
left button down = 1
left button up = 2
right button down =3
right button up = 4
mouse wheel move = 5
no button or wheel = 6
|
|
Example
onmousemove = myMouseMove;
function myMouseMove(e)
{
status(e.getY+" : "+e.getX+" : "+e.getBn );
}
These 3 value are used with the above events.
|
|