; ; >> OPTIONAL : << ; ; This very simple scripts maps joystick buttons to NUM0-NUM3 for PTT ; ; NUM0 Transmit AUTO ; NUM1 Transmit VHF1 ; NUM2 Transmit UHF ; NUM3 Transmit VHF2 ; NUM. Chatter ON/OFF ; ; NOTE: Below mapping is for my HOTAS Warthog Throttle which is device 3 in my setup. ; So the buttons are '3joyX' for me. I use DirectX buttons 3-6 which are the ; MIC buttons on the warthog throttle, so this becomes 3Joy3 - 3Joy6. ; ; Change these numbers to match your mappings: simply do some tests to figure it out. ; ; Have Fun ; ; Hollywood_315 ; -- Chatter ON/OFF -- 3Joy7:: Send {NumpadDot} Return ; -- PTT buttons -- 3Joy33:: Send {Numpad0 down} KeyWait 3Joy33 Send {Numpad0 up} return 3Joy34:: Send {Numpad1 down} KeyWait 3Joy34 Send {Numpad1 up} return 3Joy36:: Send {Numpad2 down} KeyWait 3Joy36 Send {Numpad2 up} return 3Joy35:: Send {Numpad3 down} KeyWait 3Joy35 Send {Numpad3 up} return