GetMousePos
From SCAR Divi Manual
Definition
<func>procedure GetMousePos(var x, y: Integer);</func>
Availability
SCAR Divi 3.00 > Current
Description
This function gets the cursor position relative to the selected client window and returns it in x and y.
Example
var x, y: Integer; begin GetMousePos(x, y); WriteLn('The current Mouse position is ' + IntToStr(x) + ', ' + IntToStr(y)); end.