ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
fl.managers 

IFocusManagerGroup  - AS3 Flash

Packagefl.managers
Interfacepublic interface IFocusManagerGroup
Implementors RadioButton

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

The IFocusManagerGroup interface provides properties that are used to manage a set of components of which only one can be selected at a time. Components that are part of such a component set must implement this interface.

A radio button, for example, must implement the IFocusManagerGroup interface because only one radio button can be selected from a group of radio button components at a time. The focus manager ensures that focus is not given to a radio button that is not selected when focus moves in response to the Tab key.

Related API Elements



Public Properties
 PropertyDefined By
  groupName : String
Gets or sets the name of the group of components to which this component belongs.
IFocusManagerGroup
  selected : Boolean
Gets or sets a Boolean value that indicates whether this component is selected.
IFocusManagerGroup
Property Detail

groupName

property
groupName:String

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

Gets or sets the name of the group of components to which this component belongs.



Implementation
    public function get groupName():String
    public function set groupName(value:String):void

selected

property 
selected:Boolean

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

Gets or sets a Boolean value that indicates whether this component is selected. A value of true indicates that the component is selected; a value of false indicates that it is not selected.



Implementation
    public function get selected():Boolean
    public function set selected(value:Boolean):void