Quote:
Originally Posted by -PUNISHER-
Create a function WPIFormMouseMove with condition that if MouseIsMoving then set the Tiles position = Tiles Position - X ///Cursor's X coordinate
 Pretty easy stuff if you are able to use these lines of WPI:
Code:
{$EXTERNALSYM MOUSEEVENTF_MOVE}
MOUSEEVENTF_MOVE = $0001; { mouse move }
{$EXTERNALSYM MOUSEEVENTF_ABSOLUTE}
MOUSEEVENTF_ABSOLUTE = $8000; { absolute move }
|
Thanks bt already done
Last edited by Gupta; 25-08-2016 at 06:16.
|