Yes TV here doesn't allow clicking either, if it isn't WEBtv. However, if you have another page that launches the movie, you can have something like this in the body of the first page:
HTML Code:
<a id="movie" href="movie.htm" onclick="window.location.replace(this.href)">Movie</a>
Then using the script that I already gave you:
Code:
<script type="text/javascript">
function checkTime (hour){
var now=new Date()
if (now.getHours()==hour){
document.getElementById('movie').onclick();
clearInterval(movieTime)
}
}
var movieTime=setInterval("checkTime(14);", 1*1000*60)
</script>
And then for the next movie page, put the code for that on movie.htm. If, on the other hand, it is simply a case of whatever is on your screen is on the TV station, you might want to investigate scheduler programs. There are a number of freeware ones out there. With one of those, you would not need the browser or javascript at all and could launch your programs that show your content directly as well as automatically.
No Nags is a good international resource for freeware.
Bookmarks