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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple page with flash

Status
Not open for further replies.

puppet

IS-IT--Management
Dec 13, 2001
140
Very simple question here. I just want a blank page with a flash movie in the exact centre of the page no matter what size people have their resolution set to. Is this possible and if so how? How do i get the flash movie in the exact centre of the page? Also I just tested my movie in a dremweaver page and when the page opens i get a security setting message and i need to click on allow blocked content to show the flash movie. There must be a way around this....?


any help greatly appreciated by a bumbling amatuer
 
to center it:
create a table with 100% width and 100% height, insert the flash file in that table and set horizontal align to center.


regarding the other question its beacuse of ur browser settings...

Known is handfull, Unknown is worldfull
 
So this is what I have done for my page - but still flash movie is in the top left hand corner. Any idea what I'm missing here? The security setting is only when viewed on my local drive - once uploaded it goes away. Thanks for your help.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table width="100%" height="100%" border="0">
<tr>
<td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="750" height="600" align="middle">
<param name="movie" value="Wedding.swf">
<param name="quality" value="high">
<embed src="Wedding.swf" width="750" height="600" align="middle" quality="high" pluginspage=" type="application/x-shockwave-flash"></embed>
</object></td>
</tr>
</table>
</body>
</html>
 
worked for me...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top