Question
Is it possible to add paragraphs with actionscript?
If I have an object like
<s:RichText id="foo">
<s:content></s:content>
</s:RichText>
Can I manually add paragraphs to it with actionscript?
I want to manually create a new paragraph, assign a string to it, and then stash it in the RichText object. So I can use a loop to create as many paragraphs as I might need.
Such as
for each (s:String in myCollection) {
[ foo add a p element with s in it ]
}
