Jump to content

Search the Community

Showing results for tags 'don’t kill me'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. 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
×
×
  • Create New...