I have an interesting dilemma. In Iguidance, is there a way to disable the letter "G" from showing Gps info?
I use a steering wheel control from madhacker.org and on of the keys i push emulates the letter "G' on the keyboard. When in Iguidance though, it has focus and thinks i want to open up the GPS INFO screen.
I tried looking at IGkeys but it doesn't seem to be able to disable keys.
Any reshacking i could do to fix this?
Thank you, that would be much appreciated!
Try this file:
Or create your own EXE or AU3 file from the following AutoIt code:
Code:Opt("WinTitleMatchMode", 3) $one_instance = "my_silly_script" If WinExists($one_instance) Then Exit AutoItWinSetTitle($one_instance) While 1 If WinActive("iGuidance") Then HotKeySet("g", "do_nothing") Else HotKeySet("g") EndIf Sleep(100) WEnd Func do_nothing() Sleep(1) EndFunc
That is awesome! thank you soo much!
I will try that as soon as i get home from work!
*EDIT* IT WORKED YAY!!!!!!!!!!! THANK YOU SOO MUCH!
Bookmarks