FORUM

HTML Table Renderer AS2

Home / Forum / Components Discussions / HTML Table Renderer AS2

  • 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.


    #  /  posted on Apr 21, 2009
  • 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


    #  /  posted on Apr 21, 2009
  • 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


    #  /  posted on Apr 28, 2009
  • 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


    #  /  posted on Apr 28, 2009

  • can you please give me that component link? so that i can download and test..


    #  /  posted on Apr 28, 2009
  • Sure, check the Advanced Scroll Bar AS2 .


    #  /  posted on Apr 28, 2009
  • 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———————-
    #  /  posted on Apr 30, 2009
  • 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.


    #  /  posted on Apr 30, 2009
  • 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]


    #  /  posted on Dec 04, 2009
  • 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



    #  /  posted on Dec 04, 2009
  • I’m using the trial version and for some reason whenever I place an image in the first cell of my table all the content in the cells below disappear. It this just a limitation of the trial version?


    #  /  posted on Mar 03, 2010
  • This is because you don’t close the img tag at the end, one of the most common mistakes.
    <img …. /> so use “/” when closing the tag at the end.


    #  /  posted on Mar 03, 2010
  • Hi,
    How to make some Fonts Bold ? Some Fonts – not the whole Cell!
    <b></b> does not work (using libfont)...


    #  /  posted on Mar 15, 2010
  • Hi,


    Check question 2 from the help & support tab. Also make sure you’ve created a font symbol in the library having the bold attribute selected and the font has a bold version


    FT


    #  /  posted on Mar 15, 2010

Please login to post replies.