This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SetTimer, WatchWindow, 100 | |
| return | |
| WatchWindow: | |
| if WinExist("Untitled - Notepad") && (Clipboard~="CIS\w{4}\b") | |
| { | |
| ControlSetText, Edit1, % Clipboard, Untitled - Notepad | |
| SetTimer, WatchWindow, Off | |
| ToolTip | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('body').keypress(function(event) { | |
| alert("pressed "+" "+String.fromCharCode(event.which)); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NoEnv | |
| #Warn All | |
| #Warn LocalSameAsGlobal, Off | |
| #MaxThreadsBuffer On | |
| SetBatchLines, -1 | |
| WordListFile := A_ScriptDir . "\WordList.txt" ;path of the wordlist file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| url = https://edit.yahoo.com/registration? | |
| CredArray := ["aosdjasd","aosdsaajasd","aosdjsaasd","SomePassword1234","6472219999",11,5,1985] | |
| ieObj := ComObjCreate("InternetExplorer.Application"), ieObj.Visible:=1 | |
| ieObj.Navigate(url), Wait2(ieObj), FillFields(ieObj, CredArray, "male") | |
| Return | |
| FillFields(obj, cArr, gdr) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Loop { | |
| For Item in (ComObjGet("winmgmts:").ExecQuery("Select * from Win32_NetworkAdapter"),l:="") | |
| l.=Item.NetEnabled | |
| If !InStr(l,-1) | |
| TrayTip,, Network Disconnected! | |
| } | |
| ESC::ExitApp ; <-- Press escape to exit. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; http://files.maestrith.com/irc/irc.ahk | |
| #SingleInstance,Force | |
| v:=[],settings:=new xml("settings") | |
| if !FileExist("scilexer.dll"){ | |
| SplashTextOn,200,50,Downloading required files,Please wait... | |
| urldownloadtofile,http://www.maestrith.com/files/AHKStudio/SciLexer.dll,SciLexer.dll | |
| SplashTextOff | |
| } | |
| CoordMode,ToolTip,Screen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Begin: | |
| InputBox, var, Test,,, 300, 100 | |
| RegExMatch(var,"O)(\d{2,3}).*?(\d{2,3}).*?(\d{2,3}).*?(\d{2,3})", set_) | |
| if !IsObject(set_) | |
| { | |
| Msgbox, 0x10, Whoops!, You must use a set of 4 digits only!`nPlease try again | |
| Goto, Begin | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| OnMessage(0x404,"TrayTip"), TrayTip() | |
| Return | |
| TrayTip(ParamArr*){ | |
| If !(ParamArr[1]) | |
| TrayTip, Tray Test, Click Me, 3 | |
| If (ParamArr[2]=1028 && ParamArr[4]=A_ScriptHwnd ) { | |
| TrayTip, Next TrayTip, You waited too long! Click this time!, 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #MaxThreadsPerHotKey 2 | |
| $Numpad0:: | |
| Switch := !Switch | |
| While Switch | |
| { | |
| Send LShift w | |
| Sleep 20 | |
| } | |
| Return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KeyArray := ["e","r","t"] | |
| PgUp:: | |
| i++ | |
| Hotkey % Key := KeyArray[ Mod( i-1 , KeyArray.MaxIndex() )+1 ], % "Slabel_" i, on | |
| Return | |
| PgDn:: |