How to repeat a serverside playlist after last video without reload application
Hello!
This is my server side playlist application:
application.onAppStart = function(){
this.myStream = Stream.get("serverplaylist");
this.myStream.record();
this.myStream.play("two-01-02",0,-1,true );
this.myStream.play("two-01-02", 0, -1, false);
this.myStream.play("two-01-01",0,-1,false );
}
After last movie plays, I need to reload the application and it starts again.
I would like to ask, how to repeat the server side playlist, without reload the application. A real continuos play.
Thanks,
Rafael
