This class contains a series of static constants that are used throughout the
multi-user conferencing extensions. The constants include the following for
conference room affiliations:
- AFFILIATION_ADMIN
- AFFILIATION_MEMBER
- AFFILIATION_NONE
- AFFILIATION_OUTCAST
- AFFILIATION_OWNER
And the following constants for room roles:
- ROLE_MODERATOR
- ROLE_NONE
- ROLE_PARTICIPANT
- ROLE_VISITOR
public static function enable():void
Register the multi-user chat extension capabilities with this method
public static const AFFILIATION_ADMIN:String = "admin"
public static const AFFILIATION_MEMBER:String = "member"
public static const AFFILIATION_NONE:String = "none"
public static const AFFILIATION_OUTCAST:String = "outcast"
public static const AFFILIATION_OWNER:String = "owner"
public static const ROLE_MODERATOR:String = "moderator"
public static const ROLE_NONE:String = "none"
public static const ROLE_PARTICIPANT:String = "participant"
public static const ROLE_VISITOR:String = "visitor"