[AS3] autosize and center Swf with maximum size restriction

it resizes the swf only for users with small screens so it will not fill screen even if exported with 100x100%

I searched for this alot but managed to do it myself… in case anyone needs:


<table style="width:100%; height:100%;">
<tr>
<td style="width:100%; height:100%;">
    <div align="center" style="max-height:800px; width:100%; height:100%;">
        <div style="width:100%; height:100%; max-width:1500px;">

        //swf object comes here

        </div>
    </div>

    </td></tr></table>