Field Summary |
public
| version: String |
|
|
|
Property Summary |
public
| disabledAlpha: Number (write)
|
| Sets the alpha value of the disabled component.
|
|
public
| disabledAlpha: Number (read)
|
| Retrieves the alpha value of the disabled component.
|
|
public
| enabled: Boolean (write)
|
| If true, component will function normally; if false, component will appear grayed out and will not respond to user input.
|
|
public
| enabled: Boolean (read)
|
| Receives component availability.
|
|
public
| focusTime: Number (write)
|
| Sets the time (in milliseconds) the focus of the component remains visible. The variable _global.bitFocusTime applies to all bit components. If focusTime is set, it will override the global variable.
|
|
public
| focusTime: Number (read)
|
| Gets the time (in milliseconds) the focus of the component remains visible.
|
|
public
| height: Number (write)
|
| Sets the height of the component.
|
|
public
| height: Number (read)
|
| Retrieves the height of the component.
|
|
public
| keyEnabled: Boolean (write)
|
| Sets the keyEnabled mode of the component. If set to true, the component will accept key events.
|
|
public
| keyEnabled: Boolean (read)
|
| Gets the keyEnabled mode of the component.
|
|
public
| style: Object (write-only)
|
| Used to pass a set of styles to the component. Any properties of the object passed to the style member will be applied to the component.
|
|
public
| width: Number (write)
|
| Sets the width of the component.
|
|
public
| width: Number (read)
|
| Retrieves the width of the component.
|
|
Constructor |
public
| BJCComponent (
Void)
|
| public static var globalStyle:Object;
|
|
Method Summary |
public
| draw (
Void
): Void |
| Forces an immediate redraw of the component, though generally invalidate() is preferred.
|
|
public
| invalidate (
Void
): Void |
| Marks the component to be redrawn on the next frame.
|
|
public
| move (
x: Number, y: Number
): Void |
| Places the component at the specified x/y position.
|
|
public
| remove (
Void
): Void |
| Removes component from stage. Handles any depth issues first that would prevent the component from being removed and then calls removeMovieClip.
|
|
public
| setSize (
w: Number, h: Number
): Void |
| Sizes the component to the measurements specified.
|
|
|