First I'd like to state, I really like the functionality of the screens. 'specially being able to "zoom" to where the nav bars disappear.
Now.. at my work I have a "screen" page setup showing T1 customer's bandwidth... which works nice with fullscreen and the optimized page. What I think would be kewl would be if you could set the page to cycle through the screens at some kind of configurable interval per screen etc. (like refresh every X seconds, but stay on the same screen for Y refreshes).
There are a couple ways of doing it. One create a javascipt function that calls a window.location of the next screen from the body tag as so:
Where Y is time in milliseconds.
That code could do the job, but may not be the most effienct way. *shrug*
just a thought.
Now.. at my work I have a "screen" page setup showing T1 customer's bandwidth... which works nice with fullscreen and the optimized page. What I think would be kewl would be if you could set the page to cycle through the screens at some kind of configurable interval per screen etc. (like refresh every X seconds, but stay on the same screen for Y refreshes).
There are a couple ways of doing it. One create a javascipt function that calls a window.location of the next screen from the body tag as so:
Code:
<script language="JavaScript">
<--
function nextscreen
{
window.location="http://sitename/screens.php?screenid=X";
}
-->
</script>
<body onload="timer=setTimeout('nextscreen()',Y)">
That code could do the job, but may not be the most effienct way. *shrug*
just a thought.