Jump to content

Recommended Posts

Posted

For example, how can i define function that when i press "1" on keyboard, the pregram will treat it as same as I click left mouse.

Posted

...how can i use "1" key to do something like draging a file, i.e. a click is held down for a while before release.

HotKeySet("1", "Click")

While 1
    Sleep(1000)
WEnd

Func Click()
    MouseDown("Left")
    HotKeySet("1", "UnClick")
EndFunc   ;==>Click

Func UnClick()
    MouseUp("left")
    HotKeySet("1", "Click")
EndFunc   ;==>UnClick

[size="1"][font="Arial"].[u].[/u][/font][/size]

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...