Hi
Having trouble with 2 method: 'createRoom' and 'getRoomsWithProperties'
Steps to reproduce:
1/ Create a room with property: type = ''random"
WarpClient.getInstance().createRoom("John Doe", "johndoe", 5, {type:"random"});
2/ Then try to get the room created with property: type = "ramdom"
WarpClient.getInstance().getRoomsWithProperties({type:"random"});
3/ But receive callback with no room.
public function onGetMatchedRoomsDone(event:MatchedRooms):void
{
trace("onGetMatchedRoomsDone "+event.rooms);
}
4/ Then trying the same getRoomsWithProperties method but the input param is Dictionary instead of Object data type, the callback return ALL rooms(!?), included all my static rooms created before.
***
There are examples with this feature but no AS3 written.
I think there is trouble with tableProperties of room objects.
Because of this problem, I'm stuck now.