client side RSO send function questions
I'm using the send method to send a message from server to client wich is all fine and dandy but the problem is if i try to call another function from the called function it doesn't execute here is some code to demonstrate it......is the function out of scope of the rest of the application or something since it was executed by the FMS server? I'm sure the function i'm calling works becuase it works from outside the send called fuctions
public function StopTimer():void{
timekeeper1.stopTicking();
trace("stopped ticking");
}
