View comments | RSS feed

Supported HTML tags

This section lists the built-in HTML tags supported by Flash Player. You can also create new styles and tags using CSS; see Formatting text with Cascading Style Sheets.

Anchor tag (<a>)

The <a> tag creates a hypertext link and supports the following attributes:

For example, the following HTML code creates the link "Go home," which opens www.macromedia.com in a new browser window:

urlText_txt.htmlText = "<a href='http://www.macromedia.com' target='_blank'>Go home</a>";

You can use the special asfunction protocol to cause the link to execute an ActionScript function in a SWF file instead of opening a URL. For more information on the asfunction protocol, see asfunction in Flash ActionScript Language Reference.

You can also define a:link, a:hover, and a:active styles for anchor tags by using style sheets. See Styling built-in HTML tags.

Bold tag (<b>)

The <b> tag renders text as bold, as shown in the following example:

text3_txt.htmlText = "He was <b>ready</b> to leave!";

A bold typeface must be available for the font used to display the text.

Break tag (<br>)

The <br> tag creates a line break in the text field. In the following example, the line breaks between sentences:

text1_txt.htmlText = "The boy put on his coat. <br>His coat was <font color='#FF0033'>red</font> plaid.";

The closing </br> tag is optional, but it is good practice to include it.

Font tag (<font>)

The <font> tag specifies a font or list of fonts to display the text.

The font tag supports the following attributes:

Image tag (<img>)

The <img> tag lets you embed external JPEG files, SWF files, and movie clips inside text fields and TextArea component instances. Text automatically flows around images you embed in text fields or components. This tag is supported only in dynamic and input text fields that are multiline and wrap their text.

To create a multiline text field with word wrapping, do one of the following:

The <img> tag has one required attribute, src, which specifies the path to a JPEG file, a SWF file, or the linkage identifier of a movie clip symbol in the library. All other attributes are optional.

The <img> tags supports the following attributes:

For more information and examples of using the <img> tag, see Embedding images, SWF files, and movie clips in text fields.

Italic tag (<i>)

The <i> tag displays the tagged text in italics, as shown in the following code:

That is very <i>interesting</i>.

This code example would render as follows:

That is very interesting.

An italic typeface must be available for the font used.

List item tag (<li>)

The <li> tag places a bullet in front of the text that it encloses, as shown in the following code:

Grocery list:
<li>Apples</li>
<li>Oranges</li>
<li>Lemons</li>

This code example would render as follows:

Grocery list:

Note: Ordered and unordered lists (<ol> and <ul> tags) are not recognized by Flash Player, so they do not modify how your list is rendered. All list items use bullets.

Paragraph tag (<p>)

The <p> tag creates a new paragraph. It supports the following attributes:

Span tag (<span>)

The <span> tag is available only for use with CSS text styles. (For more information, see Formatting text with Cascading Style Sheets.) It supports the following attribute:

Text format tag (<textformat>)

The <textformat> tag lets you use a subset of paragraph formatting properties of the TextFormat class within HTML text fields, including line leading, indentation, margins, and tab stops. You can combine <textformat> tags with the built-in HTML tags.

The <textformat> tag has the following attributes:

The following code example uses the tabstops attribute of the <textformat> tag to create a table of data with boldfaced row headers:

Name Age Department

Tim

32

Finance

Edwin

46

Marketing

To create a formatted table of data using tab stops:

  1. Using the Text tool, create a dynamic text field that's approximately 300 pixels wide and 100 pixels high.
  2. In the Property inspector, name the instance table_txt, select Multiline from the Line Type pop-up menu, and select the Render Text as HTML option.
  3. In the Timeline, select the first frame on Layer 1.
  4. Open the Actions panel (Window > Development Panels > Actions), and enter the following code in the Actions panel:
    //Creates column headers, formatted in bold, separated by tabs
    var rowHeaders = "<b>Name\tAge\tDepartment</b>";
    
    //Creates rows with data
    var row_1 = "Tim\t32\tFinance";
    var row_2 = "Edwin\t46\tMarketing";
    
    //Sets two tabstops, to 50 and 100 points
    table_txt.htmlText = "<textformat tabstops='[50,100]'>";
    table_txt.htmlText += rowHeaders;
    table_txt.htmlText += row_1;
    table_txt.htmlText += row_2 ;
    table_txt.htmlText += "</textformat>";
    

    The use of the tab character escape sequence (\t) adds tabs between each column in the table.

  5. Select Control > Test Movie to view the formatted table.

Underline tag (<u>)

The <u> tag underlines the tagged text, as shown in the following code:

This is <u>underlined</u> text.

This code would render as follows:




Comments


recoveredfromflashMX2004 said on Jul 27, 2004 at 11:07 AM :
pglynn said on Jan 16, 2004 at 4:19 PM :

What is the earliest version of the Flash plugin to support the break tag? It would be nice to know this for all the Supported HTML tags
recoveredfromflashMX2004 said on Jul 27, 2004 at 11:08 AM :
fij said on Apr 21, 2004 at 2:59 AM :

<img> page:

Must this tag be closed by </img> or <img src="myimg.jpg" /> or nothing ?

teflon000 said on Jun 10, 2004 at 12:25 AM :

Doesn't seem that an image tag nested in an <a href=""> </a> instance will create a clickable image for the link. Is this the case?
shimi2 said on Aug 13, 2004 at 1:05 PM :
In response to teflon000: Yes, you can nest an image tag to create a clickable image. Under the img tag section above, click the link to Embedding images, SWF files, and movie clips in text fields, then read the last section, Making Hypertext links out of embedded media.
shimi2 said on Aug 13, 2004 at 1:09 PM :
<a href> must be a string, up to 128 characters.
VinceTr said on Aug 13, 2004 at 2:40 PM :
The <textformat></textformat> tags don<t seem to work when content is loaded from an XML and has a CSS attached to it... anyone else ?
thaPol said on Aug 16, 2004 at 1:28 AM :
Image rendering is bit awkward. Especially when the textfield is resized, positioning of the image goes haywire and if the text field is resized to a smaller width than the image then it still appears, but outwith the visible area of the textfield.
the_agonizer said on Aug 25, 2004 at 6:02 PM :
I am having a problem getting <textformat leftmargin="63"> to work consistently. In the following flash html the tags effect is visible on the address but not on the other information.

<i>Address: </i><textformat leftmargin="63">Operator Certification
P.O. Box 301463
Montgomery, AL 36130-1463

</textformat><i>Phone:</i><textformat leftmargin="63"> (334) 271-7796
</textformat><i>Fax:</i><textformat leftmargin="63"> (334) 279-3051

</textformat><i>Email: </i><textformat leftmargin="63"> smdavidson@adem.state.al.us
</textformat><i>Web Site: </i><textformat leftmargin="63"> http://www.adem.state.al.us/CalenderInfo/OPTrain.htm
</textformat>

I am loading this as xml but that shouldn't be the problem when you consider that the tag works at the first time it is used but then stops working on all other attempts to format.
any ideas
No screen name said on Sep 4, 2004 at 4:27 AM :
<br> doesnt work, use instead: \n
shimi2 said on Sep 10, 2004 at 11:11 AM :
In response to the comment that <br> doesn't work:
To use the <br> tag and <p> tag, set your text field to be a multiline text field.
-For runtime text fields, set the .multiline property of the text field to true.
-For text fields created at design time, set the text field's Line Type to Multiline in the Property Inspector.
shimi2 said on Sep 10, 2004 at 11:42 AM :
Source has been fixed to indicate that multiline is necessary for <br> and <p> tags.
Thanks!
talltyler said on Sep 26, 2004 at 10:42 AM :
Can I just say that many of my problems would be solved if I could load html and have links in the html that had actionscript on them (goto frame).
What would be really really great is if you could do it like php - www.URL.com/movie.swf?var=2 or something like that.
this would give the ability for people to link to parts of movies along with solving my other problem. Flash 2005. Please
No screen name said on Oct 6, 2004 at 6:22 AM :
Is there a way to control the color of the bullets in bulleted text? We bringing bulleted text <LI> into Flash using XML; the text is white and the bullets appear black and we have had no luck changing the bullet color.
Gothic said on Oct 8, 2004 at 7:13 AM :
So here I was, trying to do a seemingly simple thing, and I got unbelievably stuck. At first, I thought it might be the TextArea's fault, but I changed it to an input textfield and I got the same problem.

Basically, I try to insert an img tag in a textfield, but at the very beginning of the text. So naturally, I thought of
myTextField.htmlText = "<img src=........>" + myTextField.htlmText;

The problem is that the text is already formatted using TextFormat objects, and the instruction above mangles all of it - the img tag is not placed at the very beginning of the textField's htmlText, but after the textformat tag, adding an extra font tag which resets the size to 2 (!!!) and an extra carriage return after the entire text, at which point the text is also formatted with size 2. Please, at least explain the reason for this weird behaviour. Perhaps there is a way not to resort to complicated string splicing when wanting to find the resulting string, img tag and all !
gorlock said on Oct 13, 2004 at 1:22 AM :
did anyone use this example:

urlText_txt.htmlText = “<a href=’http://www.macromedia.com’ target=’_blank’>Go home</a>”;

Just after the (“<a href=’http://) the rest is commented out because of the (//). this is straight out of the help files. what do I do now? (escape characters or not)
jepo said on Oct 18, 2004 at 9:13 AM :
Please try deleting and replacing the quotation marks (') and (") in your ActionScript, or copying and pasting from this LiveDocs page instead. What is happening is Flash does not understand the styles of quotation mark (the special characters) when you copy and paste the code from the Help panel within Flash. There are a couple different styles, and only one of them work. Becasue of this, the ActionScript does not behave as expected. This is also true of many web pages online when you copy and paste code (in case you run into this kind of thing again).

Hope that helps!
Jen d.
sideffect said on Oct 30, 2004 at 2:37 AM :
The <img> tag for html text is pretty shakey.

If you want a list of images to appear side by side, they simply appear ON TOP of each other.
Using the <textformat tabstops='[100, 200]'> tag doesn't work to separate the images either.
I haven't found any successful way to separate images in a dynamic textfield.
bifferz said on Nov 5, 2004 at 2:53 PM :
Do <font face="..."> and <b> tags work in dynamic text fields?

Tip to Macromedia: I think that FULLY supporting HTML in textfields would be the best way to spread flash-based sites on the net. Often customers don't want Flash because they fear they won't be able to change its content at will without hiring the developer again (e.g. "what if I wanted to add a form, that I'd make myself in HTML?")
mixart said on Nov 8, 2004 at 7:57 PM :
It appears as though tabstops are ignored if <A href> links are added to the content between the tabstops.

Run the following examples...
textbox1.htmlText ="<textformat tabstops='[100,200,300]'>One\tTwo\tThree";

textbox2.htmlText ="<textformat tabstops='[100,200,300]'><a href='one'>One</a></a>\t<a href='two'>Two</a>\t<a href='three'>Three</a>";
No screen name said on Nov 23, 2004 at 7:59 PM :
In my Flash movie, I use loadVars() to load a TXT file into a dynamic text field as html text and I would like to know how to use <textformat> in the TXT file to make a table of data using tab stops.
This particular help page covers textformat using actionscript inside Flash, but I need to make a tabular format from the TXT file that loads into the flash movie.
I have tried the code like: <textformat tabstops='[50,100]'>one \t two \t three</textformat> but when that loads into my flash movie it displays the \t's and doesn't recognize them as tabs.
Can anyone help me please?
4string said on Dec 3, 2004 at 6:01 AM :
Just so others don't waste a day trying to figure this out.

If your html text is disappearing only between certain html tags, make sure you are not embedding fonts (under Character options in the Property Inspector for the text box).
bgx said on Dec 5, 2004 at 2:36 PM :
Comment to "No screen name said on Nov 23":

I had absolutely the same problem. However I got it to work by using HTML encoded Tab characters in the external HTML like:

<TEXTFORMAT TABSTOPS="50,70">one&#09;two&#09;three</TEXTFORMAT>

I also found out that you can use likewise TABSTOPS="50,70" and TABSTOPS="[50,70]">
bgx said on Dec 5, 2004 at 2:49 PM :
Further comment to using tabstops from external sources:

It also works when you enter an actual TAB character in your text. Apparently Flash does not ignore white space like normal HTML. It also means that carriage returns and linefeeds in your text get displayed regardless whether they are <br> and <p> tags or actual returns in the text...

So if you want to define everything with proper HTML that both a browser and Flash would display correctly you seem to have to strip off the whitespace
tmccarter said on Dec 6, 2004 at 3:24 PM :
Does anyone know how to do the equivalent of <a href="#postion"> to link to a certain place in the current text field / textarea?

Thanks
No screen name said on Dec 7, 2004 at 1:24 AM :
Is there a possibility to change the color of a <li> element? I would need it in #ffffff instead of black.
No screen name said on Dec 15, 2004 at 1:20 PM :
I have a dynamic text field in flash that is importing text from a textarea field on a form, which gets stored in a database and then recovered into an html file with appropriate flash variable names (i.e. "&specials="). The textarea on the form consists of text similar to:

Wine Specials:
$14.95 - House red
$19.99 - House white

What results in flash is an extra line break between each line so it looks like:

Wine Specials:

$14.95 - House red

$19.99 - House white

Any suggestions? Thanks.
No screen name said on Dec 23, 2004 at 5:33 PM :
In response to my question above about the extra line breaks:

I found out that Flash was treating carriage returns (\r\n) from textareas incorrectly. What I needed to do to fix the problem was run a 'find-and-replace' command that replaced all of the \r\n (carriage returns) with <br>, which Flash interprets correctly when rendering as html. I completed this task in PHP using the built-in function, str_replace("\r\n", "<br>", $description);.

I think there should be more literature on this.

/Hobbs
jp@oxygenwebs.com
Adolf Kruger said on Dec 30, 2004 at 1:01 PM :
There are 3 align types for the dynamic textfields
"left", "right", "center"

but how to make dynamic text "justify" textField
in FLASH 6 or 7?

in HTML it's a simple thing
<p align="justify">text</p>
Adolf Kruger said on Jan 5, 2005 at 9:36 AM :
FLASH MX:
is there any XML tags or at least some actionScript command to format a selected character in the dynamic text field as a superscript or a subscript?

Thank you.
dorque said on Feb 8, 2005 at 11:48 PM :
In regards to <br> not working, it works for me using TextFields (with multiline set to true of course), but if you use two consecutive ones, the second one isn't recognized. To fix this, try:

html_text = "<span class='my_textstyle'> Line 1</span> <br>" // line 1
html_text += "<br>&nbsp;</br>" // empty line
html_text += "<br> <span class='my_textstyle'>&nbsp;</br> // another empty line

The same appears to be true for <p>.
No screen name said on Feb 15, 2005 at 9:24 AM :
I am trying to superscript a couple of letters in XML
No screen name said on Feb 16, 2005 at 8:24 AM :
seems like <img> tag is not supported by flash 6 plugin, is it?
#7 shows it ok
jeboothjr2 said on Feb 21, 2005 at 12:38 PM :
<img> is not supported in Flash Player 6.

I remember reading somewhere a whle back that Flash can't justify dynamic text on the fly. I don't think that's changed.

You can have a bullet in any color as long as it's black.

Also, for breaks, try using <br/> instead <br>blah blah blah</br>. I've been using this for quite a while and it always works.
JasonM23 said on Mar 2, 2005 at 1:26 AM :
Is there a minimum size the should be used with the <IMG tag... We have been attempting to insert bullet points and arrow graphics which are 7x7 - 8x8.

When they are applied to a dynamic text field they are positioned in the same place outside the text field bounds, about x: -30px , y: +30px from the top left corner of the text bounds.

BTW, the reason we tried to use the <img bullets is because the <li> bullets always render in black.

There are clearly problems with the HTML text rendering, I wonder if there is a complete list of known faults as of 7.2?
imprev said on Mar 7, 2005 at 2:26 PM :
Flash MX 2004 Professional v7.2
We have a TextArea component with a simple style sheet object attached to it. The style sheet object defines a single class that sets the color and font weight. When applied to text via a SPAN tag, the trailing space seems to be eaten by Flash...

i.e. if you have <span class="mystyle">styled text</span> some non-styled text.

the text will print out:
styled textsome non-styled text

If we use non-breaking spaces, it renders correctly.

Any ideas?
No screen name said on Mar 11, 2005 at 8:49 AM :
if you want to color the black bullets in a list another colour ( i did ), put the textfield inside another container clip and apply a colour transform to that...hey presto...
No screen name said on Mar 18, 2005 at 5:40 AM :
I am building a history field that fills up as the user interacts within the movie, the trouble is that

history.htmlText += "blah ";

results in an insane amount of extra HTML being entered in the text field; also, each instance of "blah" gets wrapped in <p>blah</p> tags, which means my single line text field never displays any of the text. Is there a reason that this is happening? Can anyone help?

(Unrelated note: Is the increasing aversion I have to using Flash due to these kinds of strange behaviours that waste so much of my time whenever I use it? An example is the fact that you can only seek to a keyframe in an .flv, which took me days to figure out and was totally undocumented)
AMFA said on Apr 5, 2005 at 8:18 AM :
I am looking for superscript dynamic text.... and ideas?

No Screen Name -
use history.condenseWhite = true
(after you declare the textfield as html and before you add content)
No screen name said on Apr 5, 2005 at 10:28 AM :
the only solution that i've found for superscripting text thus far involves replacing the individual glyph in the font with a superscripted one. for instance, i redesigned helvetica neue so that it has a superscripted circle-r as part of the face.

there has to be a better way. anyone?
neetu mittal said on Apr 9, 2005 at 12:28 AM :
I am looking for superscript the dynamic text which is taking the input from the .txt file,please let me know ,how i can do this thing because html tags(sub,sub) are not working.
lumpenprole said on Apr 12, 2005 at 7:26 AM :
Just a note in response to 4String's comment:

"If your html text is disappearing only between certain html tags, make sure you are not embedding fonts (under Character options in the Property Inspector for the text box)"

One of the reasons I've found for text dissapearing in embedded text fields is that you might be calling on other fonts. For instance, if you embed Arial and specify "Times" in a font tag, it's not going to work. The trickier one is italics. Italics are actually a different font than the normal one, so the text box doesn't know what to make of it. One way around this is to put a text field offscreen in the movie and put a single character of the same font in it, and press the italicize button. Then make it an embedded font. Make sure to embed the same character range as your main text field just to be sure.

Personally, I wish that the error behaviour was just to not apply the format instead of making the text dissapear, but whatever.
No screen name said on Apr 27, 2005 at 1:33 PM :
I am trying to load a .jpg into flash using a .txt or .xml file.....

I have a graphics symbol in my flash movie called image1 ...
I want to call my .jpg file from a .txt or .xml file image1.jpg into the
flash movie... the .jpg is 300x200 I need it to be the same in my flash movie

Doc
Ashish123 said on May 13, 2005 at 11:28 PM :
image1.jpg having size (300x200 pixels) would remain same when u loads in flash dyanmically.

but in case if u r image getting scaled a bit, then u can use _xscale and _yscale property to reduce and increase size of jpg

var myImgBox = this.createEmptyMovieClip("image1.jpg", this.getNextHighestDepth());
myImgBox._xscale = 100 //this will keep size as it is...anythign more
//than this would increase the size than the actual and vice versa
Dennis, I Sioux said on May 27, 2005 at 8:19 AM :
i was wondering if there is a option to prevent text from appearing next to a image in the textfield that loads the html..

one option tried was using BR .. but if you scale the movie(and that's needed).. the font size is reduced.. so text still come next to the image..

and if i use hspace the text moves aside.. although if i make the hspace bigger then is left next to the image.. the text will render outside of the textfield(not visible) .. and the image will even move to the right acoording to the extra hspace i fill in..

any clue?
Budianto said on Jun 15, 2005 at 3:48 AM :
Hi Experts!!

I've been doing lots of research..., but why nobody ever mention any way to type apostrophe ( ' , as in Mike's Car or Janet's Flower) in flash using external txt file. it said flash recognize HTML, but something like (&amp;) it's not working. any solution to type: apostrophe ( ' ), and sign ( & ) or any other special characters that loaded EXTERNALLY. please let me know.

Thanks much!
Budianto said on Jun 15, 2005 at 1:36 PM :
solfshr thanks lots!! it works!

do you know where i can get complete list of those special char?

Thanks again!
solfshr said on Jun 15, 2005 at 12:37 PM :
In response to Budianto,

I had to use %27 for apostrophes and %22 for quotes.
Deepak Joshi said on Jun 23, 2005 at 12:21 AM :
i used <li>dfsfsf</li> in my file to make it appear as bullet. Now the bullet is in black color. i tried all my luck but of no use. can any-one guide me on how i an change the bullet point color or image ?
No screen name said on Jul 5, 2005 at 5:50 AM :
Hi:

I am making a chat, and I would like to put smileys into it. I thought to do it using the IMG tag, but it only places the images on the left or the right.

Is there any way to place images in the middle of the text?

TIA
Sachin Dev said on Jul 6, 2005 at 12:12 AM :
How can i write a code for suprscript and subscript for a dynamic textField so i can do my Maths Application properly in MX Professional 2004. Ex: "a to the power of 2" like that. Please response asap.
loganwatts said on Jul 6, 2005 at 5:21 AM :
When using the <img> tag to embed a SWF file, can you then target the
SWFs contents from the movie containing the TextField?

THanks,
Logan
No screen name said on Jul 27, 2005 at 4:37 AM :
It seems that in the current Flash Player 8 Public Beta (8,0,0,447), nesting an image/swf inside an href tag doesn't work properly.

Has anyone noticed this or found a work around for it? I've posted a bug and hope they fix that one before launching the player.
Yatagaan said on Aug 3, 2005 at 10:32 PM :
my users are copy pasting html which is then played in flash, but if there is a class definition (eg. <div class=myClass...>) , flash doesn't show anything? Is this normal?
PdxDude said on Aug 9, 2005 at 2:56 PM :
I have the same problem as the guy above. I cannot find a way to change color on bullets. Please HELP

-----------------------------------------------------------------------
Deepak Joshi said on Jun 23, 2005 at 12:21 AM :
i used <li>dfsfsf</li> in my file to make it appear as bullet. Now the bullet is in black color. i tried all my luck but of no use. can any-one guide me on how i an change the bullet point color or image ?
------------------------------------------------------------------------
sazakir said on Aug 20, 2005 at 12:09 AM :
The <img> tag support is not complete. When two images are loaded using this tag, they overlap. But in HTML this is not the case.
Chaos_Blader said on Sep 2, 2005 at 8:43 AM :
I Load Externel text from a PHP file. if I use _root.shoutbox.text it works but when I use _root.shoutbox.htmlText it doesn't work. the Text is selectable and rendered as HTML.
Devils Knight said on Sep 10, 2005 at 6:25 PM :
How do you keep the external images brought in using <img src="myimg.jpg"> inline with the text and not where ever? I want to have text then the image on one line. (I'm using a txtArea)
No screen name said on Nov 19, 2005 at 5:28 PM :
For colored bullet points I found this fix. Use the "escaped" value for a
bulletpoint.

%E2%80%A2 as the bullet code (this is the 'escaped' value for a bullet
char)

Check the whole thread at http://www.quasimondo.com/archives/
000165.php#165 Hope this helps
orphicTam said on Apr 20, 2006 at 9:39 AM :
I've found there is no way to alter the default black colour of a li (list) element when using non - scripted textfields. I'f you want my advice, either use SetRGB to colour your entire text mc - or start using scripted textfields, styles and formats.
enginpost said on Aug 25, 2008 at 12:33 PM :
How to change the color of a bullet:

(This is only a work-around!)

First, you might find that a bullet has suddenly changed color on you. What you will find is that flash seems to color-match the bullet to the first color change in the TextField. For example, if you have a bullet that has a link in it, which is turning blue, you might notice that the bullet has also turned blue.

To change the color of a bullet apply font color formatting to the first character in the bullet text... for example:

<li>Bullet should be <a href="#">hyperlink blue</a></li>
<li> <font color="#000000">B</font>lack bullet despite <a href="#">hyperlink blue formatting</a></li>

More importantly, if you are frustrated with not being able to pull off nested bullets in Flash, here is the work-around for that:

<li>Item 1</li>
<li>Item 2</li>
<textformat blockIndent="20">
<li>Item 2.A</li>
<li>Item 2.B</li>
<textformat blockIndent="40">
<li>Item 2.A.I</li>
<li>Item 2.A.II</li>
</textformat>
</textformat>

I visually indented the sample here to make it appear as it would with nesting. This will make your bullets look indented / nested.
Jeffrey R. said on Aug 29, 2008 at 1:04 AM :
The size attribute of the font tag is implemented wrongly. According to HTML, this is a value from 1 to 7 (or a relative value using + and - before the number). It should not (per default) specify the font size in pixels. The 'HTML values' do NOT specify a pixel size.

I mention this issue as this leads into troubles when using a Javascript based HTML editor (like tinyMCE) which generates the HTML conform variant where this will render to 1..7px in Flash. Not what you would expect.

 

RSS feed | Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/flash/mx2004/main_7_2/00001040.html