PDA

View Full Version : vertical align flash movie


Billy T
12-07-2001, 12:35 AM
probably been asked a million times but I can't seem to find the answer.

I have a full screen popup and I want to have my flash movie vertically aligned in the center - how can I do it?

TIA:p

poab
12-07-2001, 02:50 AM
Hi,

Not so sure what you mean but what I think you want is simply to center the Flash movie on the screen:

Put it in a table, with one cell and vertically align the contents of the cell.

<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
<tr>
<td valign="middle">FLASH CODE GOES HERE</td>
</tr>
</table>

You'd actually be better to use CSS positioning, but browser compatibility etc. etc.

cheers.

Billy T
12-07-2001, 02:57 AM
perfect

Thanks champ;)