Thanks for buying, this is the supported HTML tags file: ANCHOR TAG ---------------------------------------------------------------------------------------------------- The tag creates a hypertext link and supports the following attributes: href A string of up to 128 characters that specifies the URL of the page to load in the browser. The URL can be either absolute or relative to the location of the SWF file that is loading the page. An example of an absolute reference to a URL is http://www.macromedia.com; an example of a relative reference is /index.html. target Specifies the name of the target window where you load the page. Options include _self, _blank, _parent, and _top. The _self option specifies the current frame in the current window, _blank specifies a new window, _parent specifies the parent of the current frame, and _top specifies the top-level frame in the current window. For example, the following HTML code creates the link "Go home," which opens www.macromedia.com in a new browser window: Go home NOTE: Absolute URLs must be prefixed with http://; otherwise, Flash treats them as relative URLs. BOLD TAG ---------------------------------------------------------------------------------------------------- The tag renders text as bold, as shown in the following example: this text is bold BREAK TAG ---------------------------------------------------------------------------------------------------- The
tag creates a line break in the text field. In the following example, the line breaks between sentences: The boy put on his coat.
His coat was red plaid. FONT TAG ---------------------------------------------------------------------------------------------------- The tag supports hexadecimal color (#FFFFFF) values. For example, the following HTML code creates red text: This is red text IMAGE TAG ---------------------------------------------------------------------------------------------------- The tag lets you embed external image files (JPEG, GIF, PNG), SWF files, and movie clips inside text fields and TextArea component instances. Text automatically flows around images you embed in text fields or components. The tag has one required attribute, src, which specifies the path to an image file, a SWF file. All other attributes are optional. The tag supports the following attributes: -src Specifies the URL to an image or SWF file, or the linkage identifier for a movie clip symbol in the library. This attribute is required; all other attributes are optional. External files (JPEG, GIF, PNG, and SWF files) do not show until they are downloaded completely. -id Specifies the name for the movie clip instance (created by Flash Player) that contains the embedded image file, SWF file, or movie clip. This is useful if you want to control the embedded content with ActionScript. -width The width of the image, SWF file, or movie clip being inserted, in pixels. -height The height of the image, SWF file, or movie clip being inserted, in pixels. -align Specifies the horizontal alignment of the embedded image within the text field. Valid values are left and right. The default value is left. -hspace Specifies the amount of horizontal space that surrounds the image where no text appears. The default value is 8. -vspace Specifies the amount of vertical space that surrounds the image where no text appears. The default value is 8. LIST ITEM TAG ---------------------------------------------------------------------------------------------------- The
  • tag places a bullet in front of the text that it encloses, as shown in the following code: Grocery list:
  • Apples
  • Oranges
  • Lemons
  • PARAGRAPH TAG ---------------------------------------------------------------------------------------------------- The

    tag creates a new paragraph. The

    tag supports the following attributes: align Specifies alignment of text within the paragraph; valid values are left, right, justify, and center. The following example uses the align attribute to align text on the right side of a text field.

    This text is aligned on the right side of the text field