topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 11:01 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: request: Toggle FARR with the last search  (Read 2767 times)

yjs14

  • Participant
  • Joined in 2010
  • *
  • Posts: 39
    • View Profile
    • Donate to Member
request: Toggle FARR with the last search
« on: May 01, 2015, 01:34 AM »
a costum hotkey(text for search edit box=%thelast%) = Toggle FARR(pause\break) + the last search(ctrl+up)
 ;D

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: request: Toggle FARR with the last search
« Reply #1 on: May 01, 2015, 05:51 AM »
With autohotkey and control+pause as the custom hotkey
^Pause::
send {Pause}
WinWaitActive, ahk_class TMainForm,,1
IfWinActive, ahk_class TMainForm
 send ^{up}
return