Here is the flow:public function buildModel(event:Event):void { chatModel = new SimpleChatModel(); chatModel.sharedID = "simpleChatModel"; chatModel.addEventListener(ChatEvent.HISTORY_CHANGE, onChatMsg); chatModel.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onSync); chatModel.connec...