Ed 2009-04-27 15:40
I've been trying out the software and it looks to work almost perfectly. My only quirk is that when I maximize MCE on either monitor the mouse gets locked to that screen and the only way for me to move the mouse over to the other screen is by hitting the start button. Causing the program to freeze for a couple of seconds. The mouse also goes back to the MCE Monitor when I use the taskbar to switch windows. Could there a possible fix. I noticed you were working on a beta version which is why I ask.
|
Christian Studer 2009-04-28 09:11
UltraMon can't help with this, I'm also not aware of another way to unlock the mouse.
Christian Studer - www.realtimesoft.com
|
Mark 2009-04-29 13:14
I run a script that sets the window size to the size of the monitor. This makes the window the same size as maximized, but it's not maximized.
Const SHOWSTATE_NORMAL = 2
Set wnd = CreateObject("UltraMon.Window")
If wnd.GetForegroundWindow() = True Then
Set sys = CreateObject("UltraMon.System")
'get the monitor the window is on
Set mon = sys.Monitors(wnd.Monitor - 1)
'fit window to the monitor workspace area
wnd.ShowState = SHOWSTATE_NORMAL
wnd.Left = mon.WorkLeft
wnd.Top = mon.WorkTop
wnd.Width = mon.WorkWidth
wnd.Height = mon.WorkHeight
wnd.ApplyChanges 0
End If
|