TLF supports the following tags: div – a division of text, can contains only div or p elements p – a paragraph, can contain any element but div a – a link; can contain tcy, span, img, tab, br tcy – a run of horizontal text, used in vertical text; for example in Japanese you can have this type of element; can contain a, span, img, tab, br span – a run of text in a paragraph; can contain only text img – an image in a paragraph tab – a tab character br – a break character. Text will continue on the next line, but it doesn’t start a new paragraph At the same time, each node has an ActionScript class implementation: TextFlow, DivElement, ParagraphElement, LinkElement, TCYElement, SpanElement, InlineGraphicElement, TabElement, and BreakElement. All these classes inherit directly or indirectly from the class FlowElement. Can we create our own class implementations inherited directly or indirectly from FlowElement? For example, if I wanted to create a TableElement, a ChartElement, a SyntaxHighlightElement, VideoElement, a MusicElement, etc My original question pertained to embedding a regular MXML Component, like mx:List, mx:DataGrid, mx:Button, etc.
... View more