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
#Include Acc.ahk | |
/* | |
This function accepts all or part of a tab's name and returns the relevant actionable object. | |
You can then use accDoDefaultAction(0) to activate the tab in Firefox. | |
Note that using accDoDefaultAction will disrupt any previously defined tab objects. | |
Attempting to act on a previously defined tab after running accDoDefaultAction | |
will result in an AHK error. You will therefore need to define a tab, activate it, | |
and only after that can you establish a second tab on which to act. |
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
#SingleInstance force | |
File := A_ScriptDir "/PlayerList.txt" | |
Gui, Add, Text,, Players | |
Gui, Add, Edit, R30 w200 +ReadOnly vPlayerList | |
Gui, Add, Text,, Page Amount | |
Gui, Add, Edit, w200 +Number vcnt |
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:: |
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
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
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
; 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
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
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
#NoEnv | |
#Warn All | |
#Warn LocalSameAsGlobal, Off | |
#MaxThreadsBuffer On | |
SetBatchLines, -1 | |
WordListFile := A_ScriptDir . "\WordList.txt" ;path of the wordlist file |