LS sent me a bunch of iG3 AutoIt scripts. I can now make a button go to ANYWHERE in the iG menu structure. What buttons would like like me to add (other than S/Q/M/L)?
I see you mentioned Day/Night, so I might add that one (not too useful if you ask me though).
If you want to look in to doing it yourself, here is basically how it works:
Code:
Opt("WinSearchChildren", 1)
;this is used because all the menu popups in IG have no window title
WinActivate ("iGuidance")
Send("{ENTER}")
;this brings up the main menu by sending Enter command
ControlFocus ( "iGuidance", "Settings", 511 )
;you must first focus the control before you can send a simulated mouse click to it
ControlClick ( "", "Settings", 511 )
;this sends a simulated mouse click to the control for the Destination button
ControlFocus ( "iGuidance", "Display", 510 )
ControlClick ( "", "Display", 510 )
ControlFocus ( "iGuidance", "3", 617 )
ControlClick ( "", "3", 617 )
That's LS's code that clicks the 3rd 3D angle in settings. You can use the AutoIt Window tool to find the control text/number of any button. I may build control clicks into Sb someday, but for now just have a button run the auto-it script and let it do the clicking.
Bookmarks