Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

User Image
Kylescousin
69 discussion posts
Hi,

There's this option to move the mouse cursor to the next monitor.
It doesn't select a window on the next monitor though, so you still have to click to start working on the monitor. Is there a way to quickly switch to the next monitor and select one of the apps there?
Passionate about technology, programming, Laravel, Linux, Reddit, running, cycling, swimming. I run a social platform called Grepless.com
Oct 20, 2016  • #1
Keith Lammers (BFS)'s profile on WallpaperFusion.com
You could definitely do that with a Scripted Function. Is the window you want it to focus always the one under the mouse cursor when you run the function that moves the cursor to the centre of the next monitor?
Oct 21, 2016  • #2
User Image
Kylescousin
69 discussion posts
Quote:
You could definitely do that with a Scripted Function. Is the window you want it to focus always the one under the mouse cursor when you run the function that moves the cursor to the centre of the next monitor?


It doesn't really matter what window gets selected, as long as you can start alt-tabbing on the other monitor :)
Passionate about technology, programming, Laravel, Linux, Reddit, running, cycling, swimming. I run a social platform called Grepless.com
Oct 22, 2016  • #3
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Ah ok, gotcha! Try this script out:

Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
public static void Run()
{
        // Move the mouse cursor to the next monitor
BFS.DisplayFusion.RunFunction("Move Mouse Cursor to Next Monitor");

// Wait 100ms
        BFS.General.ThreadWait(100);
        
        // Send a mouse left-click
        BFS.Input.LeftClickMouse();
}
}
Oct 26, 2016  • #4
User Image
Kylescousin
69 discussion posts
Quote:
Ah ok, gotcha! Try this script out:

Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
public static void Run()
{
        // Move the mouse cursor to the next monitor
BFS.DisplayFusion.RunFunction("Move Mouse Cursor to Next Monitor");

// Wait 100ms
        BFS.General.ThreadWait(100);
        
        // Send a mouse left-click
        BFS.Input.LeftClickMouse();
}
}


You sir, are AWESOME!
Passionate about technology, programming, Laravel, Linux, Reddit, running, cycling, swimming. I run a social platform called Grepless.com
Oct 26, 2016  • #5
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Glad to hear it! Have an excellent weekend :)
Oct 28, 2016  • #6
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(-)  Login to Vote(-)