Search found 1 match

by faizi
24 Mar 2011, 23:40
Forum: Server Side Extension Development
Topic: Create or update Dynamic room list in as3
Replies: 1
Views: 4744

Create or update Dynamic room list in as3

im trying to create a dynamic room using flash as3 code is:-

_SmartFoxClient.addEventListener(SFSEvent.onRoomAdded, onRoomAddedHandler);


var roomObj:Object = new Object();
roomObj.name = "The Entrance";
roomObj.maxUsers = 50;

_SmartFoxClient.createRoom(roomObj);


private function ...