thetrace Posted September 20, 2013 Posted September 20, 2013 Hey I am New Here and In autoit ..... I have this and it detect the Typed word you want it to detect ,and It work Perfectly With Words with only letters and any Caracthere But the Problem is it does not work With Numbers so if i Put a Number like this " 123456 " It won't detect it.... So Someone Can help Me Please ... !! Thanks expandcollapse popup#Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_UseUpx=n #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** HotKeySet("{ESC}","gone");allow us to quit Global $code = "THE WORD to detect " ;the code to detect Global $arrayc = StringSplit($code, "") Global $progress = 0;how many keys in sequence detected For $n = 1 To $arrayc[0] HotKeySet($arrayc[$n], "hcoder") Next ;add some keys that are not in the code but chosen so it is unlikely ;that the keys will occur in sequence without one of these being pressed HotKeySet("{SPACE}","hcoder") HotKeySet("{ENTER}","hcoder") ;add more if needed. While 1;hang around while waiting for keys Sleep(20) WEnd Func hcoder() HotKeySet(@HotKeyPressed) Send(@HotKeyPressed) If @HotKeyPressed = $arrayc[$progress + 1] Then $progress += 1 ConsoleWrite("count = " & $progress & @LF) Else $progress = 0 EndIf If $progress >= StringLen($code) Then MsgBox(0, 'hey', "that's my code") EndIf HotKeySet(@HotKeyPressed, "hcoder") EndFunc ;==>hcoder Func gone() Exit EndFunc ;==>gone
Neutro Posted September 20, 2013 Posted September 20, 2013 Hello and welcome to the forum! Could you please tell what is the final goal of this please? Identify active network connections and change DNS server - Easily export Windows network settings Clean temporary files from Windows users profiles directories - List Active Directory Groups members Export content of an Outlook mailbox to a PST file - File patch manager - IRC chat connect example Thanks again for your help Water!
water Posted September 20, 2013 Posted September 20, 2013 Welcome to AutoIt and the forum! Can you please tell us which program you try to automate? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
thetrace Posted September 20, 2013 Author Posted September 20, 2013 That Would Help me a Lot in my Cyber Space in Many things , and in Other stuffs i am realizing Like An Sms Sender with Flags And Phone prefix.......and Games
water Posted September 20, 2013 Posted September 20, 2013 You posted the "G" word. So I suggest you read the forum rules. A link can be found in the lower right corner of each page. Game automation isn't permitted here. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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