extra button FA-off

i would like to have an extra button towards FA, ive got one asigned to Hold.
but i would like to have another button for toggle.
 
I'm pretty sure you can create such toggle with FreePIE. Assigning a toggle behavior to a key that, when active, transmit your "hold" key a pressed state. I'm currently in my shop, far from a computer, but I can try to see if I get something which works for you. Which key do you use for Fa-off hold?
 
A workaround.

Got it. It's a workaorund, of course, but if you are in an hurry, you can use such a script in FreePIE:

Code:
[COLOR=#0000ff][B]if[/B][/COLOR] starting:
    fa_off_toggle = [COLOR=#0000ff]False[/COLOR]

toggle = keyboard.[COLOR=#191970][B]getPressed[/B][/COLOR](Key.NumberPadStar) [COLOR=#008000]# This is the key you want to assign to your FA-Off toggle[/COLOR] 

[COLOR=#0000ff][B]if[/B][/COLOR] toggle:
    fa_off_toggle = [COLOR=#008b8b][B]not[/B][/COLOR] fa_off_toggle

[COLOR=#0000ff][B]if[/B][/COLOR] fa_off_toggle:
    keyboard.[COLOR=#191970][B]setPressed[/B][/COLOR](Key.A) # This is the key you are currently using for FA-Off hold
    
[COLOR=#008000]# Test[/COLOR]
diagnostics.[COLOR=#191970][B]watch[/B][/COLOR](fa_off_toggle)
 
Back
Top Bottom