This section desctibes a label object and its proprties, default values of properties for different instances of label object.

Structure of section:


List of properties

Property name Type Description
text String Gets or sets the text for the label.
fontName String The name of the font for text in the label.
fontSize uint The size of the font for text in the label.
fontBold Boolean Specifies whether the text is boldface.
fontItalic Boolean Indicates whether text in the label is italicized.
fontUnderline Boolean Indicates whether the text in the label is underlined.
fontColor uint Indicates the color of the text when the label is enabled.
visible Boolean Gets or sets a value that indicates whether the label instance is visible.
x uint Gets or sets the x coordinate that represents the position of the label along the x axis.
y uint Gets or sets the y coordinate that represents the position of the label along the y axis.


statusLabel

Description:

It displays status information of upload process by default.

List of default values:
Property name Default value
text Depends on the following properties:
statusLabelOnReadyText
statusLabelOnFilesAddedText
statusLabelOnProgressText
statusLabelOnCompleteText
statusLabelOnCancelText
statusLabelOnErrorText
fontName "_sans"
fontSize 12
fontBold false
fontItalic false
fontUnderline false
fontColor 0x000000
visible false
x 5
y 3
Description of appropriate property you can find here Properties of label object.


Examples:

The property of the statusLabel is assigned via flashvars object of SWFObject on the html page:

flashvars["view.statusLabel.fontName"] = "Arial";