Christian Studer 2002-12-28 00:24
Thanks for the suggestion, will be considered.
You could already do this with a custom script:Const POS_ALL = &H7 Set sys = CreateObject("UltraMon.System") Set shell = CreateObject("WScript.Shell")
If sys.NumActiveMonitors > 1 Then 'disable secondary monitors sys.SavePositions POS_ALL sys.SecondaryDisable 'run script or application shell.Run "%WINDIR%\Notepad.exe" Else 'enable secondary monitors sys.SecondaryEnable sys.RestorePositions POS_ALL 'run script or application shell.Run "%WINDIR%\Notepad.exe" End If If you want to launch the script from the UltraMon menu, copy it to your shortcuts directory, it will then be listed on the Shortcuts menu. The location of the shortcuts folder can be found in Options > Profiles and Shortcuts.
You could also run the script using a hotkey. To do this, create a new 'Run application or script' hotkey in Options > Hotkeys.
Christian Studer - www.realtimesoft.com
|