View Single Post
  #1315  
Old 11-18-2007, 05:39 PM
nanochip nanochip is offline
Senior Member
 
Join Date: Jan 2006
Posts: 705
Default Re: Full Tilt Shortcuts - new ahk script

[ QUOTE ]
[ QUOTE ]
I am having an issue with FTShortcuts interfering with other .AHK script's hotkeys. When a Full Tilt window has focus and I use a hotkey from a different script, it never works. I have to click out of the window and then I can use my hotkey. Is there anyway around this? Are there any hotkeys that FTShortcuts doesn't grab?

[/ QUOTE ]

FTS shouldn't be capturing any keys that are not assigned within FTS. I'll see if I can duplicate this.

[/ QUOTE ]

I put the following code into another ahk script that I use:

#IfWinActive ahk_class FTC_TableViewFull
F11::
Send, !{F4}
Return
#IfWinActive

which sends Alt-F4 to the table whenever F11 is pressed, which closes the table.
I had FTS running at the same time, and when I pressed F11, the table closed. I then tried using some FTS commands first and then I pressed F11 and the table closed.

I then changed the test to

#IfWinActive ahk_class FTC_TableViewFull
!p::
Send, !{F4}
Return
#IfWinActive

where Alt-p would send the close command. This also closed the table when Alt-p was pressed.

I wasn't able to duplicate what you are seeing, as FTS was not capturing keys used by my other script. I haven't had any other reports of this. I'm not sure what to suggest here.

nano
Reply With Quote