TextFieldHTMLImporter:
/** Parse the <b> formatting element
* Calculates the new format to apply to _activeFormat and continues
parsing down the hierarchy
* @private
*/
static public function
parseStrikeThrough(importer:TextFieldHtmlImporter, xmlToParse:XML,
parent:FlowGroupElement):void
{
var newFormat:TextLayoutFormat = new TextLayoutFormat();
newFormat.lineThrough = true;
parseChildrenUnderNewActiveFormatWithImpliedParaFormat
(importer, xmlToParse, parent, newFormat);
}
The parseStrikeThrough parses for an <s> element and makes it strike
through.... Not the <b> element... that cost me some time.
Mike