The HTML/CSS Page Renderer AS3 component provides an advanced HTML / CSS page 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.
FEATURES:
- Multiple HTML/CSS page categories definition within XML
- Support for all common HTML tags and attributes and CSS properties supported by Flash
- You can define custom pages width/height, border color, border size, border transparency, background color, background transparency, cell spacing, cell padding support
- It includes automatic Scroll Bar component with horizontal/vertical orientation
- Optionally set the main XML configuration file path in HTML using FlashVars
Check also the HTML/CSS Page Renderer ActionScript 2.0 ( AS 2.0) version!
Shopping Cart








Hi,
I bought this component and was trying stuff with the embedding swf’s in the html file. The start and stop buttons work, but is it also possible to add more ‘advanced’ functions like restart the movie, skip etc ?
The reason why i’m asking this is i would like to add a movie to the html file, but i would like more controls the just stop and play.
2nd: Is it possible to, in some way, add external flv or f4v files the same way? (and perhaps with controls)
Basicly, is there any solution to add video ?
[Reply]
Flashtuning Reply:
April 6th, 2010 at 4:41 pm
Hi,
Thank you for purchasing the HTML / CSS Page Renderer application.
You can check question 1 from within the FAQ area regarding SWF to HTML inclusion:
http://www.flashtuning.net/faq
The application only renders HTML / CSS pages -> note only the html/css tags supported by Flash and additonal tables, tr,td, row and column spans, you can check also the most common questions and answers for the Table Renderer product at:
http://www.flashcomponents.net/component/flash_tuning_table_renderer/help.html
Regarding video you can embed an external SWf file having a video player component inside a table cell ( so basically you need to purchase a video player product and include the video SWF inside a cell – td tag).
Regards,
Flashtuning
[Reply]
Hi, tnx for the reply. I’ll give it another try.
In the mean time i stubled on another thing.
i add a table with:
var paginaInhoud = new FtTableRenderer();
paginaInhoud.name = “paginaInhoud”;
paginaInhoud.sourceFile = “pages/table.html”;
mc.addChild(paginaInhoud);
then i would like to resize it when the stage size changes:
this.stage.addEventListener(Event.RESIZE, resizeStageHandlerContent);
function resizeStageHandlerContent(event:Event):void {
var table = paginaInhoud.root.table;
table.setTable(“width”,”600″);
table.updateTable();
}
but that gives me the error:
TypeError: Error #1010: A term is undefined and has no properties.
at presentatie_fla::MainTimeline/resizeStageHandlerContent()
i’m stuck, can you help me?
grt Bas
[Reply]
Hi,
To render the HTML are you using an iFrame under the covers?
[Reply]
Can anyone reply to my comment form april 7th?
[Reply]
Try accessing the table instance in a different way ( it seems that the table is not accessed correctly that’s why you get that error msg ):
var table = mc.getChildByName("paginaInhoud");var table = paginaInhoud.root.table; //-> this seems to not be correct[Reply]
It render div’s and “display: inline-block” like CSS’s ?
Sorry my bad english, I’m a brazilian xD
[Reply]
Flashtuning Reply:
June 15th, 2010 at 2:07 pm
Hi,
Check the link inside the reply to Bas comment on top regarding the HTML Table Renderer product for the exact list of tags and attributes support.
FT
[Reply]
Leave a Comment