main.asc server side script not working
Here the simple script i put at server seem like is not working also enclosed screenshot for the adminconsole
my server side file main.asc save at /opt/adobe/fms/application/playtechmnflive/
my doing FMS edge server.
--------------------------------------
application.allowDebug= true;
application.onAppStart = function(){
this.eventTime = (new Date().valueOf() + 10000);
this.timer_int = setInterval(checkForEvent, 1000, this);
}
function checkForEvent(app){
var now = new Date().valueOf();
if(now > app.eventTime) {
trace("something");
}else{
trace("damn");
}
}
-------------------

