Dez's BigBang with Spinnakers boom

Well like I said when I’m interested in what your thoughts are about me I’ll ask. Stay on topic here please.

Could you please let me know what ms you run this at. I don’t use AHK, I have the Corsair K55 keyboard.

60 ms is what I use.

OK, thank you for the reply.

how do I activate the AHK?

okay got something to work but how do I add a delay?

F2::
If State=50
State=Off
else
State=50
SetTimer SendKey, %State%
Return

SendKey:
Send 1
Return

here ya go Chip… for clarification in the first place…:wink: …cheers.

Thanks beano - i always need somneone to look out for me and tell me my business.

Here’s my AHK for a 90ms delay in spamming my “1” key

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
#MaxThreadsPerHotkey 2
#IfWinActive World of Warcraft

Toggle := 0

$F1::
Toggle := !Toggle
While Toggle{
    Send, {Blind}1
    Sleep, 90
}
return