As requested by some users after last kanium session I recorded the process of setting up a Autohotkey Script that set's up 3 keybinds in order to activate push the CITV buttons in M1A2 TC F3 view.
It got a bit lenghty as I just recorded the full process and trying to explain the whole process instead of just providing the script as I tried to keep the script as simple as possible and there fore it need some prework, mainly identifying the position of the buttons on screen in F3 view. This position can differ due to screen resolution or multi monitor setup.
But just for the sake for those already using AHK or ant to see the script
;Press ALT e mouse will move to given screen location and perfom a Left mouse click
!e::
KeyWait Alt
;Position of the CITV Man Auto Button in F3 view
Click, 349,123,Left, 1 ,D
Sleep 100
Click, 349,123,Left, 1 ,U
return
;Press ALT f mouse will move to given screen location and perfom a Left mouse click
!f::
KeyWait Alt
;Position of the CITV GLOS in F3 view
Click, 349,272,Left, 1 ,D
Sleep 100
Click, 349,272,Left, 1 ,U
return
;Press ALT i mouse will move to given screen location and perfom a Left mouse click
!i::
KeyWait Alt
;Position of the GPS GLOS in F3 view
Click, 349,389,Left, 1 ,D
Sleep 100
Click, 349,389,Left, 1 ,U
return