
29-08-2016, 18:17
|
 |
Registered User
|
|
Join Date: Dec 2015
Location: Rome
Posts: 96
Thanks: 421
Thanked 24 Times in 15 Posts
|
|
Quote:
Originally Posted by Razor12911
Find this in script
procedure LockKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
make it
procedure LockKeyDown(Sender: TObject);
then find:
OnKeyDown:=@LockKeyDown;
Make this
OnClick:=@LockKeyDown;
Note: This is not tested, I wrote code with Notepad.
|
I got this
|