There's a String.split() method that might be what you're looking for.
var eachPieceArray: Array = myTextArea.htmlText.split(" ");--- In [email protected], "jmfillman" <[EMAIL PROTECTED]> wrote: > > How would I go about taking the htmltext of a TextArea and parsing it > based on a space and assigning each piece to an Array or > ArrayCollection? >

