Post Reply

Forums -> UltraMon™ -> ScrPlayerStop
RJ   2017-12-04 07:18
With Ultramon 3.3 the below script worked perfectly to STOP the Screen Saver on a secondary monitor. When I upgraded to v3.4 the below script stopped. Interestingly the ScrPlayerStart.vbs still works. Any ideas?

-- ScrPlayerStop.vbs -----------------------------
Const SCRPLAYER_TITLE = "UltraMon Screen Saver Player"
Const SCRPLAYER_CLASS = "ScrPlayer"

Set wnd = CreateObject("UltraMon.Window")

'close all ScrPlayer instances
For Each w In wnd.GetAppWindows(False)
If w.Title = SCRPLAYER_TITLE And w.Class = SCRPLAYER_CLASS Then
w.Close
End If
Next
--------------------------------------------------
Christian Studer   2017-12-04 15:00
I'm seeing that as well, happens because the Screen Saver Player fullscreen window no longer gets treated as an application window. I have uploaded a new version of the script which fixes the issue: ScrPlayerStop.vbs

Christian Studer - www.realtimesoft.com
RJ   2017-12-04 15:40
Thank you!!
Forums -> UltraMon™ -> ScrPlayerStop

Post Reply