<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: HTML Table Renderer AS3</title>
	<atom:link href="http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html</link>
	<description>Free Flash Xml Components, Image Galleries,  Website Templates and Players</description>
	<lastBuildDate>Thu, 09 Feb 2012 14:16:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: St3fX</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-651</link>
		<dc:creator>St3fX</dc:creator>
		<pubDate>Tue, 14 Sep 2010 21:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-651</guid>
		<description>Hi,
I encounter the same problem as Bas...
I have to precise that the font I&#039;m trying to render with css is listed correctly in my library by testing it with Font.enumerateFonts( false ); but don&#039;t render at all in the span. I can eventually give you my code by PM if you want to have a clear idea of what I&#039;m doing but IMHO, cellfont=&quot;css&quot; for fonts not installed on the system is not working at all :(
Hope you can confirm I&#039;m wrong...</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I encounter the same problem as Bas&#8230;<br />
I have to precise that the font I&#8217;m trying to render with css is listed correctly in my library by testing it with Font.enumerateFonts( false ); but don&#8217;t render at all in the span. I can eventually give you my code by PM if you want to have a clear idea of what I&#8217;m doing but IMHO, cellfont=&#8221;css&#8221; for fonts not installed on the system is not working at all <img src='http://www.flashtuning.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
Hope you can confirm I&#8217;m wrong&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashtuning</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-470</link>
		<dc:creator>Flashtuning</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-470</guid>
		<description>Make sure all the configuration files and iamges are in their place.</description>
		<content:encoded><![CDATA[<p>Make sure all the configuration files and iamges are in their place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-416</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 15 Jul 2010 21:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-416</guid>
		<description>I have an .swf that loads another .swf with the second .swf having the table component. My tables are visible when I test on my machine but when I upload to the web none of the HTML tables made with TableRenderer show up. Any ideas?</description>
		<content:encoded><![CDATA[<p>I have an .swf that loads another .swf with the second .swf having the table component. My tables are visible when I test on my machine but when I upload to the web none of the HTML tables made with TableRenderer show up. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashtuning</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-361</link>
		<dc:creator>Flashtuning</dc:creator>
		<pubDate>Mon, 28 Jun 2010 20:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-361</guid>
		<description>To create a table from string correct example:

[as3]
var myTable = new FTTableRenderer();
this.addChild(myTable);
myTable.createFromString(yourHTMLFormattedString);
[/as3]</description>
		<content:encoded><![CDATA[<p>To create a table from string correct example:</p>
<pre class="brush: as3; title: ; notranslate">
var myTable = new FTTableRenderer();
this.addChild(myTable);
myTable.createFromString(yourHTMLFormattedString);
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-360</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sun, 27 Jun 2010 18:53:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-360</guid>
		<description>I&#039;ve been trying to add a new table programmatically from Library but keep getting the following error message. Here is the code. I omitted the table HTML but I know it works because when I drag an instance of the component onto the stage everything works perfectly. I only have problems with doing it all in ActionScript.

var ftTable:FtTableRenderer = new FtTableRenderer();
ftTable.addEventListener(&#039;onTableRendered&#039;, handleRendered);
var sTableHTML:String = &#039;html...html&#039;;
ftTable.createFromString(sTableHTML);

Triggers this...
TypeError: Error #1009: Cannot access a property or method of a null object reference.
	at FtTableRenderer/XkbijTsntdle()
	at FtTableRenderer/YsZkvrSrtqTW()
	at FtTableRenderer/createFromString()
	at challenge_fla::MainTimeline/frame1()</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been trying to add a new table programmatically from Library but keep getting the following error message. Here is the code. I omitted the table HTML but I know it works because when I drag an instance of the component onto the stage everything works perfectly. I only have problems with doing it all in ActionScript.</p>
<p>var ftTable:FtTableRenderer = new FtTableRenderer();<br />
ftTable.addEventListener(&#8216;onTableRendered&#8217;, handleRendered);<br />
var sTableHTML:String = &#8216;html&#8230;html&#8217;;<br />
ftTable.createFromString(sTableHTML);</p>
<p>Triggers this&#8230;<br />
TypeError: Error #1009: Cannot access a property or method of a null object reference.<br />
	at FtTableRenderer/XkbijTsntdle()<br />
	at FtTableRenderer/YsZkvrSrtqTW()<br />
	at FtTableRenderer/createFromString()<br />
	at challenge_fla::MainTimeline/frame1()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashtuning</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-293</link>
		<dc:creator>Flashtuning</dc:creator>
		<pubDate>Wed, 02 Jun 2010 08:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-293</guid>
		<description>Make sure the rowspan and colspan is a correct number value. Send us an email with a html source file example to check. Also attach your PayPal transaction id for this purchase to check your details. Thanks.</description>
		<content:encoded><![CDATA[<p>Make sure the rowspan and colspan is a correct number value. Send us an email with a html source file example to check. Also attach your PayPal transaction id for this purchase to check your details. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bas</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-273</link>
		<dc:creator>Bas</dc:creator>
		<pubDate>Tue, 25 May 2010 21:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-273</guid>
		<description>Hey Guys,

I noticed some strange behavior which i didnt expect:

if i have a table, with 3 cels. 2 on the left, 1 on the right.

---------
&#124; a &#124;   &#124;
----&#124; c &#124;
&#124; b &#124;   &#124;
---------

If i place anything in cell C, whose content is larger then cell A, it wont start cell B right after A. Instead it moves cell B down to the end of content of cell C. like this

---------
&#124; a &#124; c &#124;
&#124;   &#124; c &#124;
&#124;   &#124; c &#124;
----&#124; c &#124;
&#124; b &#124; c &#124;
---------

while expected is:

---------
&#124; a &#124; c &#124;
----&#124; c &#124;
&#124; b &#124; c &#124;
&#124;   &#124; c &#124;
&#124;   &#124; c &#124;
---------


I dont think thats expected and wanted behavior.

please provide a fix

grt Bas</description>
		<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>I noticed some strange behavior which i didnt expect:</p>
<p>if i have a table, with 3 cels. 2 on the left, 1 on the right.</p>
<p>&#8212;&#8212;&#8212;<br />
| a |   |<br />
&#8212;-| c |<br />
| b |   |<br />
&#8212;&#8212;&#8212;</p>
<p>If i place anything in cell C, whose content is larger then cell A, it wont start cell B right after A. Instead it moves cell B down to the end of content of cell C. like this</p>
<p>&#8212;&#8212;&#8212;<br />
| a | c |<br />
|   | c |<br />
|   | c |<br />
&#8212;-| c |<br />
| b | c |<br />
&#8212;&#8212;&#8212;</p>
<p>while expected is:</p>
<p>&#8212;&#8212;&#8212;<br />
| a | c |<br />
&#8212;-| c |<br />
| b | c |<br />
|   | c |<br />
|   | c |<br />
&#8212;&#8212;&#8212;</p>
<p>I dont think thats expected and wanted behavior.</p>
<p>please provide a fix</p>
<p>grt Bas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashtuning</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-21</link>
		<dc:creator>Flashtuning</dc:creator>
		<pubDate>Tue, 06 Apr 2010 16:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-21</guid>
		<description>Hi,

Check the second question from the Table Renderer FAQ area at:

http://www.flashcomponents.net/component/flash_tuning_table_renderer/help.html

and also download the trial package of the Table Renderer component  ( in case you don&#039;t have already the commercial version ) and check the .fla examples included in the package:

http://www.flashcomponents.net/component/flash_tuning_table_renderer/downloads.html ( AS2 version )

http://www.flashcomponents.net/component/flash_html_table_renderer/downloads.html ( AS3 version )

Regards,
Flashtuning</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Check the second question from the Table Renderer FAQ area at:</p>
<p><a href="http://www.flashcomponents.net/component/flash_tuning_table_renderer/help.html" rel="nofollow">http://www.flashcomponents.net/component/flash_tuning_table_renderer/help.html</a></p>
<p>and also download the trial package of the Table Renderer component  ( in case you don&#8217;t have already the commercial version ) and check the .fla examples included in the package:</p>
<p><a href="http://www.flashcomponents.net/component/flash_tuning_table_renderer/downloads.html" rel="nofollow">http://www.flashcomponents.net/component/flash_tuning_table_renderer/downloads.html</a> ( AS2 version )</p>
<p><a href="http://www.flashcomponents.net/component/flash_html_table_renderer/downloads.html" rel="nofollow">http://www.flashcomponents.net/component/flash_html_table_renderer/downloads.html</a> ( AS3 version )</p>
<p>Regards,<br />
Flashtuning</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bas</title>
		<link>http://www.flashtuning.net/flash-user-interface-components/html-table-renderer-as3.html/comment-page-1#comment-17</link>
		<dc:creator>Bas</dc:creator>
		<pubDate>Mon, 05 Apr 2010 21:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashtuning.net/?p=157#comment-17</guid>
		<description>Hi,

For some reason i cant seem to be able to add a libfont via css to the document. I tried everything i could find googling for this, but its not working. And as soon as i add cellfont=&quot;libfont&quot; to the html the normal css seems to be ignored totally for that cell.

What i did was add a css file:

h1 {
font-family: testFont;
color:#FFFFFF;
font-size: 30px;
font-weight: normal;
}

i added the testFont to the library, but it seems to fall back to default when in the html file i use: testing this text
any suggestions?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>For some reason i cant seem to be able to add a libfont via css to the document. I tried everything i could find googling for this, but its not working. And as soon as i add cellfont=&#8221;libfont&#8221; to the html the normal css seems to be ignored totally for that cell.</p>
<p>What i did was add a css file:</p>
<p>h1 {<br />
font-family: testFont;<br />
color:#FFFFFF;<br />
font-size: 30px;<br />
font-weight: normal;<br />
}</p>
<p>i added the testFont to the library, but it seems to fall back to default when in the html file i use: testing this text<br />
any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 10/28 queries in 2.179 seconds using disk: basic

Served from: www.flashtuning.net @ 2012-02-09 18:32:13 -->
