roomList

Availability:

Flash Player 7, 8
SmartFoxServer Lite / Basic / Pro

Usage:

smartFox.roomList

Description:

The property is an object containing objects that describe each room in the current zone. You can inspect this list at any time in your application to retrieve room properties.

Check the Room Class for more info on the objects contained in the list.

Parameters:

none      

Returns:

Nothing.

Example:

for (var i:String in smartFox.roomList)
{
	var r:Room = smartFox.roomList[i]
	trace("Room name: " + r.getName())
}

See also: