I.E When the program is minimized, it should still be running.
What I'm doing is detecting the keys that I press in certain combinations while I play a video game to determine exactly how many times I use a certain attack or combination.
And when I minimize the compiled program, it doesn't record my keystrokes on these certain buttons. Here is my code:
Code: Select all
local backSlashAttack
local healParty
local useMount
local useSpecial
on keyUp key
switch key
case "k"
put backSlashAttack + 1 into backSlashAttack
put backSlashAttack into field "lblBackSlash"
break
case "l"
put healParty + 1 into healParty
put healParty into field "healParty"
break
case "o"
put useMount + 1 into useMount
put useMount into field "useMount"
break
case "m"
put useSpecial + 1 into useSpecial
put useSpecial into field "useSpecial"
break
case ","
put useTele + 1 into useTele
put useTele into field "useTele"
break
end switch
end keyUp