getRoomListProperty()

Availability:

SmartFoxServer Lite / Basic / Pro

Usage:

smartFox.getRoomListProperty()

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 Properties for more info on the properties contained in the propertylist.

Parameters:

none      

Returns:

Returns a list of rooms. Each room is represtented by a propertylist.

Example:

roomList = smartFox.getRoomListProperty()
repeat with i=1 to roomList.count
	put("Room name: " + roomList[i].name)
end repeat

See also: