public var:NoOfElements = 0;
public function addElement(){
// increases NoOfElements by one in every call
}
public function remvoveElement(){
// decreases NoOfElements by one in every call
}
addElement and removeElement is called by two separate timer events. And in each method it modifies the global variable NoOfElements. Is there a method to synchronize variables in acionscript ?