Actionscript 3 and nested lists
- by Hanpan
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