What is the best way to display HTML in Flex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:15:30Z http://stackoverflow.com/feeds/question/309897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/309897/what-is-the-best-way-to-display-html-in-flex 0 What is the best way to display HTML in Flex? Eric Belair 2008-11-21T19:29:26Z 2009-06-13T17:00:33Z <p>I have HTML that includes symbols such as the Trademark "TM" as superscript (&trade;). In normal HTML, I would use <code>"&amp;trade;"</code> or <code>&amp;#153;</code> to display the Trademark TM. However, I can find no way to import HTML like this into Flex and have it displayed correctly. I am having similar issues with the <code>&lt;li&gt;</code> tag.</p> <p>My HTML:</p> <pre><code>&lt;p&gt;This information is intellectual property of My Company&amp;#153;.&lt;/p&gt; &lt;p&gt;Available features:&lt;/p&gt; &lt;li&gt;Feature 1&lt;/li&gt; &lt;li&gt;Feature 2&lt;/li&gt; &lt;li&gt;Feature 3&lt;/li&gt; &lt;li&gt;Feature 4&lt;/li&gt; &lt;p&gt;COPYRIGHT INFORMATION:&lt;/p&gt; &lt;p&gt;Copyright &amp;#169; 2008, My Company. All rights reserved.&lt;/p&gt; </code></pre> <p>The only way that I've gotten this to work is by copying and pasting the content directly into Flex:</p> <pre><code>&lt;mx:Text width="100%" height="100%"&gt; &lt;mx:htmlText&gt; &lt;![CDATA[ This information is intellectual property of My Company™. Available features: • Feature 1 • Feature 2 • Feature 3 • Feature 4 COPYRIGHT INFORMATION: Copyright © 2008, My Company. All rights reserved. ]]&gt; &lt;/mx:htmlText&gt; &lt;/mx:Text&gt; </code></pre> <p>I want to use an external HTML file that I can import into my Flex App at run time, so that I don't have to recompile the app for a simple content change. </p> <p>I've heard of too many issues with the iFrame option, so I want to avoid that, if possible.</p> <p>Does anyone have any other good suggestions for dealing with this issue?</p> <p>Thank you.</p> http://stackoverflow.com/questions/309897/what-is-the-best-way-to-display-html-in-flex/315040#315040 1 Answer by Marcus Blankenship for What is the best way to display HTML in Flex? Marcus Blankenship 2008-11-24T18:46:08Z 2008-11-24T18:46:08Z <p>Okay, this is a tricky one. I just finished a project where we used this open-source library to display HTML: <a href="http://code.google.com/p/flex-htmlfilter" rel="nofollow">http://code.google.com/p/flex-htmlfilter</a></p> <p>It handles lists, tables, etc, and is pretty easy to work with. But, I don't think it supports the trademark symbol. It does support some of the others, though.</p> <p>I'm using it to pull content from a CMS and display in my flash movie. It has worked great, and allows me all the flash styling flexibility I need.</p> <p>If you need help, email me at info@linkvillewebdesign.com.</p> <p>Marcus</p> http://stackoverflow.com/questions/309897/what-is-the-best-way-to-display-html-in-flex/991041#991041 0 Answer by Cyno for What is the best way to display HTML in Flex? Cyno 2009-06-13T17:00:33Z 2009-06-13T17:00:33Z <p>I have some trouble compiling <a href="http://code.google.com/p/flex-htmlfilter" rel="nofollow">http://code.google.com/p/flex-htmlfilter</a>, does anyone have a compiled version ?</p>