- All
- Special Offers
- User Interface
- Scroll Bar Components
- Flash XML Calendars
- HTML / XML News Readers
- HTML / XML Tables & Grids
- Flash Contact Forms
- Date Picker Components
- Flash XML Guestbooks
- Color Picker Components
- Countdown Components
- Flash Tool Tip Components
- Image Zoom & Panning Controls
- Flash Text Tools & Editors
- Rating and Pool Systems
- Flash Weather Widgets
- 3D Object Rotators
- Shopping Carts
- Flash Maps
- Flash Charts
- Galleries & Slideshows
- Menus & Navigation
- Design & Effects
- Audio & Video
- Templates
- Applications & Games
- Various
- Adobe Flex
- Adobe AIR
- Free Flash Files
- Lightroom Plugins
- Dreamweaver Extensions
Posted by : Flashtuning
44 purchases
Package includes: MXP,FLA
Opens with: Flash MX 2004, Flash 8, Flash CS3, Flash CS4, Adobe Air, Flex
AS Version: ActionScript 2.0
Viewable with: Flash Player 7 and above
Flash knowledge required: Advanced
Documentation: Excellent documented
Use CSS, library fonts and custom AS functions
The Flashtuning Table Renderer component provides an advanced XML/HTML table rendering engine for Flash, complete with CSS support and advanced features such as row and column spans.
The component can render all common types of content (text, SWF files, images and Flash library objects) and allows embedding custom fonts and offers advanced text rendering controls.
This component is available for:
Flash MX 2004, Flash Mx Professional 2004, Flash 8, Flash CS3, Flash CS4.
Check the Most Common Question and Answers at the bottom of HTML Table Renderer AS2 product page from our site!
For further information you can check the online Quick Start Guide, the Help&Support area and the TRIAL EXAMPLES available for download.
Check also the Table Renderer AS 3.0 version!
You can also download the HTML Help Books from the following location: DOWNLOAD HELP BOOKS
Check also other great FlashTuning.net products such as 3D XML Carousels, 2D & 3D XML Menus, XML Banner Rotators, XML Galleries & Slideshows, Video Lists & FLV Players, HTML News Readers by clicking the image below:
This product is included in ALL FILES PACKAGE:
- Price : $9
- buy now
- add to alerts
Hi FT,
Love the product. But have a question.
Can you please give some more examples for AS2 because this is the AS2 version.
Also in the Table Renderer Quickstart Guide there you are talking about the full documentation. Where can I find this?
Grz
Prommetheus
[code]
// This code is for ActionScript 3.0 //
var xmlStr = ‘<html><head><link href=“css/style.css” /></head><body><table width=“350” border=“5” cellpadding=“5” cellspacing=“5” bordercolor=”#b0e46f” bgcolor=”#7c8bd5”><tr><td width=“4” bgcolor=”#F4EEC2” /><td width=“342” align=“center” bgcolor=”#2c2929”><font color=”#bbbbbb”>table renderer</font></td><td width=“4” bgcolor=”#F4EEC2” /></tr></table></body></html>’;
var table = new FtTableRenderer();
table.name = “table”;
this.addChild(table);
var tb = this.getChildByName(“table”
tb.createFromString(xmlStr);
// For ActionScript 2.0 you’ll only use the attachMovie to create a component instance and call the createFromString() method with your newly created component reference
[/code]
It supports only the html tags supported by Flash. Read all most common questions and answers first please from our product page at the bottom at Table Renderer FAQ or in the Help & Support tab above.
I am using your sample file only.
This component is not working me. My html file IE browser output is different then flash component. Also this componet doest not support css (border option)
.tbl_box1 {
color: #606060;
background-color: #000000;
font-family: Tahoma;
font-size: 14px;
margin: 0px;
padding: 0px;
border: 1px solid #3C3C3C;
}
let me know does it support .
———————-table.html—- please check this output IE and CSS——————
<html>
<body>
<table width=“100%” border=“1” cellspacing=‘10’ cellpadding=‘10’>
<tr>
<td bgcolor=”#FF0000”>
<table width=“359” border=‘2’ bordercolor=”#333333” cellspacing=‘10’ cellpadding=‘10’ bordercolordark=”#666666” bordercolorlight=”#999999”>
<tr>
<td width=“72” height=“47” bgcolor=”#000000” cellfont=“libfont” antialias=“advanced” gridfit=“pixel” sharpness=“400” thickness=“200”><span class=“style1”>1</span></td>
<td width=“82” height=“47” align=“center” bgcolor=”#000000”><span class=“style1”>1</span></td>
<td width=“124” height=“47” align=“right” bgcolor=”#000000”><span class=“style1”>1</span></td>
<td width=“71” height=“47” align=“right” bgcolor=”#000000”><span class=“style1”>1</span></td>
</tr>
</table></td> </tr> </table> </body> </html> ————————————————end———————-
can you please give me that component link? so that i can download and test..
Hi,
1. No but you can purchase separately the classic or advanced scroll bar component and attach it to the table renderer.
2. Trial version component has limitations and can render only 4×4 tables. There are no restrictions in the full version.
FT
I would like to buy (HTML Table rendered AS2) commercial version component before that i have one question?
1. HTMLTableRenderer , Does it support automatic scroll bar?
I mean if my html file, it has large data does it support automatic scroll bar?
Trial version component does not support. more over i can not add more text inside html. Please reply me as soon as possible.
Thanks
Hi,
Both extensions are draggable extensions from the Components Panel and you have trial versions and examples for both of them ( with some limitations ) to test them before you buy available in the Downloads tab. For most common questions check also the products pages from our site.
Regards,
Flashtuning
Hi, I’m about to buy both, the HTML Table renderer and the Advanced Scrollbars.
My questions prior buying these would be: – Can I remove the yellow border on the scrollbars and customize its buttons? (shape, colors, etc) – Can I use duplicateMovieClip to have multiple instances of both components on the same stage? – The HTML content can be loaded from an external .html file with its own CSS? – both are draggable extensions, or a movie project?
Thanks in advance for your reply.

























help
and feedback
latest
news
latest
forum entries
Hi,
You have the examples in the download package. If you’re referring to the code bellow in particular and you don’t know how to do it in AS2 instead AS3 … for AS2 you simply use attachMovie to attach a table instance dynamically similar to:
var xmlStr=...
this.attachMovie(“FTTableRenderer”,“myTable”,100);
myTable.createFromString(xmlStr);
...
FT