Jump to content

Shift key stuck plz help me!


Recommended Posts

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 done

Send("{SHIFTDOWN}{SHIFTUP}") but it doesn’t work for me. My code is (limited edition)

Opt("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 by IDU
text missing
Link to comment
Share on other sites

  • 2 weeks later...
  • Developers

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 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.
  :)

Link to comment
Share on other sites

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 by IDU
Link to comment
Share on other sites

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 here
RegExp tutorial: enough to get started
PCRE 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)

Link to comment
Share on other sites

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
 Share

×
×
  • Create New...