wjones
14 years agoVisitor
Can Roku do this?
I have a webpage that is dynamically created based on criteria the server says to display. It's not really streaming, but refreshes every 60 seconds or so. Can someone point me in the right direction ...
timer=createobject("rotimespan")
timer.mark()
while true
if timer.totalseconds() > 60 then
doMyThing()
timer.mark()
end if
end while