topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday March 29, 2024, 7:45 am
  • 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: FARR is on other monitor, can't see  (Read 4879 times)

hdok

  • Participant
  • Joined in 2017
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
FARR is on other monitor, can't see
« on: February 05, 2020, 12:22 AM »
Since I installed the new version of FARR I have an issue with my dual monitor setup.
At work I use my laptop (primary monitor) with another monitor (secondary). Often I move FARR to the secondary monitor.
At home I just use my laptop , so primary monitor only. Unfortunately FARR is still showing on the other monitor (that is not there).
If I use my hotkey FARR does not show, but if I just type an alias or a application's name: it just works.

How can I fix this?

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #1 on: February 06, 2020, 11:52 AM »
If this only happens in the newest FARR version then it is probably an issue that mouser will fix.

In the meantime you could try some workarounds:

First, check if you can move the FARR window using the Win + Shift + Left/Right shortcuts in Windows. Those shortcuts work on most windows. Did not work on my FARR though, but worth a first try.

Alternatively, try using an AutoHotkey script to move the window to the visible part of the screen. One single line of code is enough to move the FARR window to near the middle of the primary display on my PC.
WinMove, ahk_class TMainForm ahk_exe FindAndRunRobot.exe,, 500, 500

If that works then you could for convenience make a FARR alias to run the script when you type "move".
alias name: move FARR
regex: ^move$
Result: dolaunch C:\folder\moveFARR.ahk

Modify the result line to the filename and folder you want for the AutoHotkey script.
You could also change the "move" part of the regex to whatever other string you want to use to launch the script.

hdok

  • Participant
  • Joined in 2017
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #2 on: February 28, 2020, 12:44 AM »
As the Win+Shift+Right indeed does not work I added a line to my AHK script (I have a script running that defines a number of hot keys) added Win+F12 to do the trick. Thanks for suggesting this idea. Still hope of course that this will indeed be fixed in the next release of FARR.

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #3 on: February 28, 2020, 10:35 AM »
I added a line to my AHK script (I have a script running that defines a number of hot keys) added Win+F12 to do the trick.
That'll do it until the bug is fixed.

Off topic: For some time I kept my FARR use and AutoHotkey use mostly separate. But now I find it much easier, and more mnemonic, to make small single use AutoHotkey scripts and run them from a FARR alias. Easier to recall the alias "move" for moving a window than the hotkey "win+F7" or similar. Especially for stuff that I don't use very often.

Filipe Meira Castro

  • Supporting Member
  • Joined in 2010
  • **
  • Posts: 104
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #4 on: March 03, 2020, 11:56 AM »
As a workaround, it is also possible to click "ALT Space" then select "move" and use the arrow keys to move it back to a visible place!

jcnassoc

  • Participant
  • Joined in 2015
  • *
  • Posts: 11
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #5 on: March 23, 2020, 05:05 PM »
As a workaround, it is also possible to click "ALT Space" then select "move" and use the arrow keys to move it back to a visible place!
-Filipe Meira Castro (March 03, 2020, 11:56 AM)

Filipe - Thanks for the suggestion; just solved a problem for me! :)
________________
_____/ Regards,   
____/ al     

Filipe Meira Castro

  • Supporting Member
  • Joined in 2010
  • **
  • Posts: 104
    • View Profile
    • Donate to Member
Re: FARR is on other monitor, can't see
« Reply #6 on: March 23, 2020, 05:10 PM »
You're welcome, glad it helped  :D