Package | fl.controls |
Class | public class ButtonLabelPlacement |
Inheritance | ButtonLabelPlacement Object |
Language Version: | ActionScript 3.0 |
Product Version: | Flash CS3 |
Runtime Versions: | Flash Player 9.0.28.0, AIR 1.0 |
labelPlacement
property of a Button,
CheckBox, or RadioButton component.
Related API Elements
Public Properties
Public Methods
Public Constants
Constant | Defined By | ||
---|---|---|---|
BOTTOM : String = "bottom" [static]
The label appears below the icon. | ButtonLabelPlacement | ||
LEFT : String = "left" [static]
The label appears to the left of the icon. | ButtonLabelPlacement | ||
RIGHT : String = "right" [static]
The label appears to the right of the icon. | ButtonLabelPlacement | ||
TOP : String = "top" [static]
The label appears above the icon. | ButtonLabelPlacement |
Constant Detail
BOTTOM | Constant |
public static const BOTTOM:String = "bottom"
Language Version: | ActionScript 3.0 |
Product Version: | Flash CS3 |
Runtime Versions: | Flash Player 9.0.28.0, AIR 1.0 |
The label appears below the icon.
LEFT | Constant |
public static const LEFT:String = "left"
Language Version: | ActionScript 3.0 |
Product Version: | Flash CS3 |
Runtime Versions: | Flash Player 9.0.28.0, AIR 1.0 |
The label appears to the left of the icon.
RIGHT | Constant |
public static const RIGHT:String = "right"
Language Version: | ActionScript 3.0 |
Product Version: | Flash CS3 |
Runtime Versions: | Flash Player 9.0.28.0, AIR 1.0 |
The label appears to the right of the icon.
TOP | Constant |
public static const TOP:String = "top"
Language Version: | ActionScript 3.0 |
Product Version: | Flash CS3 |
Runtime Versions: | Flash Player 9.0.28.0, AIR 1.0 |
The label appears above the icon.
Examples How to use this example
ButtonLabelPlacementExample.as
The following example demonstrates the possible values for the ButtonLabelPlacement class:
package { import fl.controls.Button; import fl.controls.ButtonLabelPlacement; import flash.display.Sprite; public class ButtonLabelPlacementExample extends Sprite { private var topButton:Button; private var bottomButton:Button; private var leftButton:Button; private var rightButton:Button; public function ButtonLabelPlacementExample() { // ButtonLabelPlacement.TOP var topButton:Button = new Button(); topButton.setStyle("icon", Icon); topButton.labelPlacement = ButtonLabelPlacement.TOP; topButton.label = ButtonLabelPlacement.TOP; topButton.move(10, 10); topButton.setSize(120, 120); addChild(topButton); // ButtonLabelPlacement.BOTTOM var bottomButton:Button = new Button(); bottomButton.setStyle("icon", Icon); bottomButton.labelPlacement = ButtonLabelPlacement.BOTTOM; bottomButton.label = ButtonLabelPlacement.BOTTOM; bottomButton.move(140, 10); bottomButton.setSize(120, 120); addChild(bottomButton); // ButtonLabelPlacement.LEFT var leftButton:Button = new Button(); leftButton.setStyle("icon", Icon); leftButton.labelPlacement = ButtonLabelPlacement.LEFT; leftButton.label = ButtonLabelPlacement.LEFT; leftButton.move(270, 10); leftButton.setSize(120, 120); addChild(leftButton); // ButtonLabelPlacement.RIGHT var rightButton:Button = new Button(); rightButton.setStyle("icon", Icon); rightButton.labelPlacement = ButtonLabelPlacement.RIGHT; rightButton.label = ButtonLabelPlacement.RIGHT; rightButton.move(400, 10); rightButton.setSize(120, 120); addChild(rightButton); } } } import flash.display.Sprite; class Icon extends Sprite { public function Icon() { this.graphics.beginFill(0xFF0000); this.graphics.drawRect(0, 0, 20, 20); this.graphics.endFill(); } }
Mon Nov 28 2011, 06:48 AM -08:00