A really simple flash in html - question

I have never needed to do this before - how do you get the swf to sit at the very top of a html page?? so there is no borders? I have tryed alligning but no avail

thanks in advance.

try putting this in the <head> of your html code

topmargin=“0” rightmargin=“0” bottommargin=“0” leftmargin=“0”

?

No Didnt Work - Thx

try this

<style type=“text/css”>
<!–
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
–>
</style></head>

<body leftmargin=“0” topmargin=“0” marginwidth=“0” marginheight=“0”>

thankyou everyone - the last one did it.

you all are a great help .

one day when im a flash elder ill repay and ween the youngsters of tommorrow!

I said <head> didn’t I? I actually meant <body>, so sorry about that and glad it was corrected! Spent so much time delving into the world of actionscript lately I have forgotten HTML…

These forums are great:)

I have this code which works great

<body topmargin=0 bottommargin=0 bgcolor="#000000">

Although it does not align it to the top in Safari.

Sandman9