Rich text editor for AS3

Is there any rich text editor available that can generate “AS3 Compatible” codes?
I want to add this to the web admin, where user can set the font size and color of the text and it should generate as3 compatible code like:

<p><font size="12" color="#000000">Welcome to</font> <font size="30" color="#ffffff">My Website</font></p>

I used the CKEditor, but it generates like this:

<p><span style="font-size:12px; color:#000000">Welcome to</span></p>

I am assigning this value in my textfield with txt.htmlText.

If there is not any such text editor available, is there any way to render the above “span style” in the as3 textfield?