AJ.OPEN.MOUSE, AJ.CLOSE.MOUSE, AJ.MOUSE.ACTION

AJ.OPEN.MOUSE

Begins operation with the mouse.

AJ.CLOSE.MOUSE

Completes operation with the mouse.

AJ.MOUSE.ACTION

Controls the mouse pointer.

AJ.MOUSE.ACTION(A)

A - dynamic array:
A<1> - Coordinate on an axis X;

A<2> - Coordinate on an axis Y;

A<3> - state of mouse button:
1 - button is pressed;
2 - double click;
3 - button released.
A<4> - Number or numbers of the pressed buttons:
1 - the left button;
2 - the right button;
3 - the middle button.

Attribute of a communication of information from the mouse is the sending in the channel of a symbol 255.

EXAMPLE:

IN A IF A=27 THEN
       . . . 
       IF A = 255 THEN CAll AJ.MOUSE.ACTion(A)
End