Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to prevent a monitor from sleeping while on a web page?

I have a page with an animation in html that doesn't require user interaction. The monitor can sleep during this and I want to prevent this.

When watching a video on Hulu, I notice that the monitor doesn't sleep so there must be some way to prevent this.

share|improve this question

5 Answers

up vote 4 down vote accepted

The talk about Flash got me wondering, so I made a simple move that just loops a short flv file. Lo and behold when on this page, the monitor doesn't sleep! So all I need to do is make a little movie that's just the background color of the page and loop that on pages where I don't want the monitor to sleep.

share|improve this answer
Looks like the flv needs an audio track for this work even if the audio is silent. – Tom Kincaid Feb 21 at 16:46
You mentioned you need a way to do it for a cross-platform web page. Is your intention of a 'simple movie that just loops a short flv file' cross-platform? Is there not a way in your HTML5 page/animation that you fake a mouse move? – Only You Feb 21 at 18:08
Flash is on 99% of web browsers, so that's pretty good. If there is a way to do it with javascript that works for all html5 browsers, I'd take that. – Tom Kincaid Feb 21 at 21:00

It's not possible in pure HTML. Hulu does it because it's Flash-based, and the plugin has access to the OS layers, which is something JS or HTML does not have. So the only way to do this would be to have a new paragraph in the HTML5 spec.

I suppose that the browser will disable sleep when going fullscreen, but it's to be verified.

See this post for more info.

share|improve this answer
OK, then how do I do it with a flash movie embedded on a web page? – Tom Kincaid Feb 21 at 2:12
I believe it's handled by the flash plugin, it depends on which one is it, but I believe most of them do this. It would be a different question to ask here :) – CharlesB Feb 21 at 7:51

I can't believe this hasn't already been covered here, but I can't find anything right now.

Anyway --

you basically need to handle WM_SYSCOMMAND with the SC_POWERSAVE parameter:

http://msdn.microsoft.com/en-us/library/windows/desktop/ms646360(v=vs.85).aspx

share|improve this answer
I just happened to notice that a more modern way of controlling this appears to be by calling the SetThreadExecutionState API function: social.msdn.microsoft.com/Forums/eu/csharpgeneral/thread/… – 500 - Internal Server Error Feb 15 at 17:56
1  
This seems to be only for a windows desktop app. I need a way to do it for a cross-platform web page like Hulu. – Tom Kincaid Feb 19 at 15:51

As a quick thought -- would writing to HTML5 local storage be considered "doing something" by the web browser, and thus the monitor kept on?

Unfortunately I'm not in a position to test this at the moment, but if that works out, you might be able to eliminate the need for Flash in addition to HTML5.

share|improve this answer
I tried running a script that set sessionStorage every 10 seconds, but the monitor still slept. There might be more to this to explore. – Tom Kincaid Feb 21 at 21:17

Please try what happens when watching a video on You Tube, or any other video website; see if the monitor sleeps with these other services.

Though there might be a programatic way to keep the monitor from sleeping, I don't think Hulu is doing it itself; it may be at the operating system level.

It is the hardware device (I'm thinking the display adapter) having some activity and because of that the monitor won't go to sleep while the video is being played.

Look at the answer referenced below; it's about a way to stop the screen saver which, might be possible to go with same or similar IDEA and prevent the display from turning-off.

http://stackoverflow.com/a/5475116/463478

share|improve this answer
My monitor also does not sleep when watching a video on you tube. – Tom Kincaid Feb 21 at 2:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.