Simba Code:
(*
Mouse
~~~~~~
.. code-block:: pascal
procedure Mouse(Box : TBox; ClickType : Integer);
Moves the mouse to the Indicated Box, and performs the ClickType
.. note::
by PhaseCode
Example:
Mouse(InvBox(1),1);
.. code-block:: pascal
*)
procedure Mouse(Box : TBox; ClickType : Integer);
begin
MouseBox(Box.X1,Box.Y1,Box.X2,Box.Y2, ClickType)
end;
When working with InvBox's, I found it a pain in the butt to have to do X1,Y1,X2,Y2. Unless there is a method that Already does this, here is my suggestions : P .