Actionscript 3 and nested lists

Posted by Hanpan on Stack Overflow See other posts from Stack Overflow or by Hanpan
Published on 2010-03-30T09:37:22Z Indexed on 2010/03/30 12:13 UTC
Read the original article Hit count: 587

Filed under:
|
|

Hi,

I have the following code in my XML (EDIT:) which I am trying to show in a RichText using htmlText.

<ul>
<li>List Item 1
   <ul>
      <li>List Item 2</li>
   </ul>
</li>
</ul>

Unfortunately, Flash doesn't seem to support nested lists, and I am getting output which looks like this:

  • List item 1
  • List item 2

Where I want the second ul to be indented further.

Any ideas would be much appreciated!

Cheers

© Stack Overflow or respective owner

Related posts about actionscript-3

Related posts about flex