Hi List,
seems like there's a problem with Timer.
I've done that:
trace("Starting server");
t = new Timer(1000);
t.run= function () { trace("Timer!"); };
s.run("localhost",8563);
trace("Server exiting");
It seems that the timer never triggers (I never get a trace from it)
Any idea?