sir Posted October 13, 2006 Posted October 13, 2006 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.
Paulie Posted October 13, 2006 Posted October 13, 2006 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.Like this? HotKeySet("1", "Click") While 1 Sleep(1000) WEnd Func Click() Mouseclick("Left") EndFunc
sir Posted October 13, 2006 Author Posted October 13, 2006 Like this? HotKeySet("1", "Click") While 1 Sleep(1000) WEnd Func Click() Mouseclick("Left") EndFunc Yes i have try this before. it works. but 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.
BigDod Posted October 13, 2006 Posted October 13, 2006 HotKeySet("1", "Click") While 1 Sleep(1000) WEnd Func Click() MouseDown("Left") Sleep(100) MouseUp("left") EndFunc Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
herewasplato Posted October 13, 2006 Posted October 13, 2006 ...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]
Cue Posted October 14, 2006 Posted October 14, 2006 Try #Include <Misc.au3> HotKeySet("1", "Click") While 1 Sleep(1000) WEnd Func Click() HotKeySet("1") MouseDown("Left") While _IsPressed(31,"user32.dll") WEnd MouseUp("left") HotKeySet("1", "Click") EndFunc should act exactly like a mouse button
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now