How to display percent loaded, bytes loaded and bytes total information?
The preloader text supports three regular expressions which can display these values:
#PL#: precent loaded
#BL#: bytes loaded
#BT#: bytes total
When using regular expression, please make sure to include the two “#” before and after the characters.
For example, below text will be red color, and contains the percent loaded number and the suffix char "%":
<font face='Arial,Times New Roman' color='#FF0000' size='12'>#PL#%</font>
How to change the font, size and color of preloader text?
The preloader text supports HTML tags, you can use the font tag to define the font, color, size of the text.
Font tag (<font>)
The <font> tag specifies a font or list of fonts to display the text. The font tag supports the following attributes, and you need to use the single quotation mark ' to quote the value text.
color
Only hexadecimal color (#FFFFFF) values are supported. For example, the following HTML code creates red text:
<font color='#FF0000'>This is red text</font>
face
Specifies the name of the font to use. As shown in the following example, you can specify a list of comma-delimited font names, in which case Flash Player selects the first available font:
<font face='Times, Times New Roman'>Times or Times New Roman...</font>
If the specified font is not installed on the user's computer system or isn't embedded in the SWF file, Flash Player selects a substitute font.
size
Specifies the size of the font, in pixels, as shown in the following example:
<font size='24' color='#0000FF' face='Times, Times New Roman'>This is blue, 24-point text</font>
Anchor tag (<a>)
The <a> tag creates a hypertext link, for example:
<a href='http://www.mtoolcomponents.com' target='_blank'>Home</a>
Bold tag (<b>)
The <b> tag renders text as bold, as shown in the following example:
He was <b>ready</b> to leave!
Italic tag (<i>)
The <i> tag displays the tagged text in italics, as shown in the following code:
That is very <i>interesting</i>.
Underline tag (<u>)
The <u> tag underlines the tagged text, as shown in the following code:
This is <u>underlined</u> text.


