IDU Posted May 20, 2015 Posted May 20, 2015 (edited) I’m using autoit3 for make keyrep software, it look like if “s” key pressed after “a” then Unicode send 0241.I’m done everything ok, but only one thing gone error the shift key. In holding down the shift key first send uppercase but secondly it send lower case. Can anyone fix this? I already doneSend("{SHIFTDOWN}{SHIFTUP}") but it doesn’t work for me. My code is (limited edition)expandcollapse popupOpt("SendCapslockMode", 0) Global $hotkeynum SelectKey();firstly runing func Func SelectKey() While True HotKeySet("{a}","sima") HotKeySet("{A}","capA") HotKeySet("{s}","sims") HotKeySet("{S}","capS") Sleep(50) WEnd EndFunc ;~ DesableFunction////////////// Func desableallkey() HotKeySet("{a}") HotKeySet("{A}") HotKeySet("{s}") HotKeySet("{S}") EndFunc ;~ End Main Function////////////////////////////////////////////////////// ;~ Main Function Calling Functions//////////////////////////////////////// func sima() $hotkeynum = 1 desableallkey() Send("a") SelectKey() EndFunc func capA() $hotkeynum = 1 desableallkey() Send("A") SelectKey() EndFunc func sims() If $hotkeynum = 0 Then desableallkey() Send("{BS}{ASC 0241}"); 0241 =ñ ,0242=ò Else desableallkey() Send("{BS}{ASC 0242}") EndIf SelectKey() EndFunc func capS() If $hotkeynum = 0 Then desableallkey() Send("{BS}{ASC 0242}") Else desableallkey() Send("{BS}{ASC 0241}") EndIf SelectKey() EndFunc test - key.au3 Edited May 30, 2015 by IDU text missing
reb Posted May 21, 2015 Posted May 21, 2015 (edited) check the help file for send.especially this part"To hold a key down Send("{a down}") ;Holds the A key down Send("{a up}") ;Releases the A key"send(" {ENTER up}") might do.your link test - Copy - Copy.au3is not working for me so this is just a guess.good luck Edited May 21, 2015 by reb IDU 1 MEASURE TWICE - CUT ONCE
IDU Posted May 30, 2015 Author Posted May 30, 2015 thanks reb for reply me.but its not what i looking for. now my link is work, you can check it for revise my code.
Developers Jos Posted May 30, 2015 Developers Posted May 30, 2015 (edited) You code is flawed as it never returns from any functions and your while loop is setting the hotkeys constandly.As this remark from the Helpfile is important:It is recommended to use lower-case keys/characters (e.g. "b" and not "B") when setting hotkeys to avoid errors as with some keyboard layouts upper and lower case keys may be mapped differently.Jos ps: Posting in this support forum implies you need help so no need to put that in the title! Edited May 30, 2015 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
IDU Posted May 30, 2015 Author Posted May 30, 2015 (edited) You code is flawed as it never returns from any functions and your while loop is setting the hotkeys constandly.As this remark from the Helpfile is important:Jos ps: Posting in this support forum implies you need help so no need to put that in the title!Thanks jos for replying.Firstly I’ll remove “plz help me!” from my next topic.Secondly you said that hot keys are constandly, but they aren’t constandly. There is a function to disable hot keys (desableallkey()). But it is true that never return from function. But it not necessary to return from loops and there was a code to detect upper and lower case. ( Opt"SendCapslockMode", 0) Edited May 30, 2015 by IDU
jchd Posted May 30, 2015 Posted May 30, 2015 You need to carefully reread what Jos told you. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
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