No. Flash won't read those tags. Simply not supported. A quick way to correct
this, is replacing the tags with supported ones using regular expression in
your server side script that receives the formatted text from the editor and
then save the data to the database.
or you use string methods to search/replace, like
yourString = yourString.split("<strong>").join("<b>");
and so on ...
take a look at string and array object for details
perry
> No. Flash won't read those tags. Simply not supported. A quick way to correct
> this, is replacing the tags with supported ones using regular expression in
> your server side script that receives the formatted text from the editor and
> then save the data to the database.
robsoule - 27 Jul 2005 14:35 GMT
Thanks! I'll check into that option.
-Rob