Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

age old question centering newbie

Status
Not open for further replies.

chachacla

Technical User
Jan 20, 2003
2
US
I'm new to flash and need some help finding where to put the centering html here's my code. I love you guys. J
<HTML>
<HEAD>
<meta http-equiv=Content-Type content=&quot;text/html; charset=ISO-8859-1&quot;>
<TITLE>trry21</TITLE>
</HEAD>
<BODY bgcolor=&quot;#000000&quot;>
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--Peg DaffornBased out of Fort Wayne. IndianaRepresented by Ford Modeling ChicagoChoose--><OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
codebase=&quot; WIDTH=&quot;760&quot; HEIGHT=&quot;420&quot; id=&quot;trry21&quot; ALIGN=&quot;&quot;>
<PARAM NAME=movie VALUE=&quot;trry21.swf&quot;> <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=exactfit> <PARAM NAME=bgcolor VALUE=#000000> <EMBED src=&quot;trry21.swf&quot; quality=high scale=exactfit bgcolor=#000000 WIDTH=&quot;760&quot; HEIGHT=&quot;420&quot; NAME=&quot;trry21&quot; ALIGN=&quot;&quot;
TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;</OBJECT>
</BODY>
</HTML>
 
Set up a centered table and embed the movie in the table. Regards,

oldman3.gif
 
In fact something like this...

Code:
<HTML>
<HEAD>
<TITLE>FLASH CENTERING TEST!</TITLE>
</HEAD>
<BODY bgcolor=&quot;#999999&quot; MARGINHEIGHT=&quot;0&quot; MARGINWIDTH=&quot;0&quot; TOPMARGIN=&quot;0&quot; 
LEFTMARGIN=&quot;0&quot; RIGHTMARGIN=&quot;0&quot; BOTTOMMARGIN=&quot;0&quot; SCROLL=&quot;NO&quot;>
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<center>
<table width=&quot;100%&quot; height=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;7&quot;>
<tr bgcolor=&quot;#999999&quot;> 
<td align=&quot;center&quot; valign=&quot;middle&quot;></td>
<td align=&quot;center&quot; valign=&quot;middle&quot;>
<OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
 codebase=&quot;[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0&quot;[/URL]
 ID=&quot;flashfile&quot; WIDTH=650 HEIGHT=400>
 <PARAM NAME=movie VALUE=&quot;mykrobDesign1.swf&quot;> <PARAM NAME=loop VALUE=false> <PARAM NAME=menu VALUE=false> 
 <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#000000> 
 <EMBED NAME=&quot;flashfile&quot; src=&quot;mykrobDesign1.swf&quot; swLiveConnect =true loop=false 
 menu=false quality=high bgcolor=#000000  WIDTH=650 HEIGHT=400 
 TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;[URL unfurl="true"]http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&quot;>[/URL]
 </EMBED>
</OBJECT>
</td>
</tr>
</table>
</BODY>
</HTML>
Regards,

oldman3.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top