Click to See Complete Forum and Search --> : Please Send Help


thepinkrobot25
08-03-2007, 04:01 PM
Howdy ALL,
My first Post ever is a duzy....
Im new to flash but Im learning quickly and I have already created a job for a frined of mine. This job can be viewed at francescasalon.com/

Now here is my questions....
Please. Send. Help.

so I hope you've seen my incomplete file that is web active...
(I AM STILL FINISHING IT BUT NEEDED TO MAKE SURE I WAS CAPABLE OF GETTING IT ONLINE)
anyways,
1) I figured out how to make it always center using a <div> command in the html file...
but I cant figure out how to make it vertically center as well...
2) (more importantly) I envisioned this site just taking up the complete browser window...with no extra fat(border) surrounding it when a user drops by the site...how is this done....??? I've done like a billion searches and didnt get a solid answer...
Here is a copy of the code as it stands right now:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>index</title>
</head>
<body bgcolor="#000000">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
<p align="left"></p>
-->
<div align="center">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="789" height="754" id="index" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="quality" value="best" />
<param name="scale" value="noborder" />
<param name="salign" value="rb" />
<param name="bgcolor" value="#000000" />
<embed src="index.swf" quality="best" scale="noborder" salign="rb" bgcolor="#000000" width="789" height="754" name="index" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</div>
</object>
</body>
</html>

Any help I can get would be graciously appreciated...
Thanks a lot guys,
Russ

WebJoel
08-03-2007, 05:43 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>index</title>
</head>
<body bgcolor="#000000">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
<p align="left"></p>
-->
<div style="width:789px; margin:0 auto;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="789" height="754" id="index" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="quality" value="best" />
<param name="scale" value="noborder" />
<param name="salign" value="rb" />
<param name="bgcolor" value="#000000" />
<embed src="index.swf" quality="best" scale="noborder" salign="rb" bgcolor="#000000" width="789" height="754" name="index" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</div>
</object>
</body>
</html> specify a WIDTH for the DIV, and use "auto" for the left & right margin. I used margin:0 auto; which means "zero"-top, auto-right, "zero"-bottom and auto-left. Same thing as margin:0 auto 0 auto; only, in shorthand. This is better than align="center".

Let me figure out the rest...

ahh...here we go!

http://www.dynamicsitesolutions.com/css/center-page-content-horizontally-and-vertically/

thepinkrobot25
08-04-2007, 03:04 AM
im goign to try it this second...
even if its late.
thanks again.