ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Find And Run Robot

Feature request: Scroll-Lock to make Farr stay open

(1/1)

lanux128:
mouser, just following up the request made in irc: use Scroll-Lock to make Farr stay open, regardless of the default setting.

cranioscopical:
Could it possibly be an option instead of a done deal?

lanux128:
modified an old script by wr975 to temporarily keep Farr always-on-top but this doesn't work for the "stay open" thingy. just copy the script & add it to your Farr toolbar.




--- ---; Always on Top toggle for active window - by wr975
; Source: https://www.donationcoder.com/forum/index.php?topic=6374.0
; Adapted for Farr toolbar
;
#SingleInstance force
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
 
IfWinActive, %A_Space%Find and Run Robot v2 ahk_class TMainForm
{
  WinGet, ExStyle, ExStyle, A
  If (ExStyle & 0x8)
  {
    WinSet, AlwaysOnTop, Off, A
    TrayTip, AlwaysOnTop, Disabled,, 1
  }
  Else
  {
    WinSet, AlwaysOnTop, On, A
    TrayTip, AlwaysOnTop, Enabled,, 1
  }
  Sleep, 2000
  TrayTip
}
Return

Navigation

[0] Message Index

Go to full version