Results 1 to 6 of 6

Thread: Iguidance Keyboard Shortcuts

  1. #1
    Low Bitrate mrcanngo's Avatar
    Join Date
    Jun 2006
    Location
    Vancouver
    Posts
    87

    Iguidance Keyboard Shortcuts

    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?

  2. #2
    FLAC Marvin Hlavac's Avatar
    Join Date
    May 2005
    Location
    .... . .-. .
    Posts
    1,015
    iGkeys doesn't disable keys , it creates new keyboard shortcuts. But I think it should be possible to do what you need. Hmm, let me look into it tomorrow (unless someone helps you with it tonight). I think all it needs is to capture the g (when iGuidance is active), and then do nothing.

  3. #3
    Low Bitrate mrcanngo's Avatar
    Join Date
    Jun 2006
    Location
    Vancouver
    Posts
    87
    Thank you, that would be much appreciated!

  4. #4
    FLAC Marvin Hlavac's Avatar
    Join Date
    May 2005
    Location
    .... . .-. .
    Posts
    1,015
    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

  5. #5
    Low Bitrate mrcanngo's Avatar
    Join Date
    Jun 2006
    Location
    Vancouver
    Posts
    87
    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!

  6. #6
    FLAC Marvin Hlavac's Avatar
    Join Date
    May 2005
    Location
    .... . .-. .
    Posts
    1,015
    I'm glad it worked :-)

    Enjoy!

Similar Threads

  1. iGo Stowaway USB Keyboard
    By monkeyracer in forum The Review Palace
    Replies: 18
    Last Post: 04-16-2008, 11:28 AM
  2. iGuidance Font Size Fix summary thread
    By Viscouse in forum GPS
    Replies: 29
    Last Post: 03-28-2006, 07:21 PM
  3. Replies: 2
    Last Post: 08-19-2005, 12:15 AM
  4. KEYBOARD_ shortcuts not working intermittantly
    By cnidus in forum FP Bug Reports
    Replies: 9
    Last Post: 12-14-2004, 12:49 AM
  5. iguidance keyboard shortcuts?
    By liquid_smoke in forum GPS
    Replies: 7
    Last Post: 12-03-2004, 10:56 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •