It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Is there a mod to turn the Highlight Objects key (TAB by default) from a key you have to hold down into an off/on toggle?
This question / problem has been solved by Lysanafaeimage
There are, though they mostly rely on AutoHotkey. There's this one, which tends to make antivirus programs rather angry, despite not actually being malicious. There's also this one, which has some pure scripts to work *directly* with AutoHotkey, avoiding the antivirus issues. If you'd rather just get AutoHotkey and make your own simple script, paste the following into a text file, and rename the file to have .ahk as the file type instead of .txt.


state:=0

$Tab::
state:= !state
if state
Send {TAB down}
else
Send {TAB Up}
return
Thank you, this was pretty much exactly what I was looking for.