I've just started making a new site for someone I know and I'm a total beginner. What I'm trying to do is display the embedded flash buttons in the centre, but when I preview this code in a browser I get different results based n browser but neither actually displays the buttons.
I have put the .swf file in the same folder as my index.html.
Heres the code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#menubar {left: 50px; margin-left: 450px; right: 50px; margin-right: 450px;}
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
AC_SW_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,1,1,0','width','635','height','47','src','Maidbuttons','pluginspage','http://www.adobe.com/shockwave/download/' ); //end AC code
</script>
<noscript>
<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,1,1,0" width="635" height="47">
<param name="src" value="Maidbuttons.swf" />
<embed src="Maidbuttons.swf" pluginspage="http://www.adobe.com/shockwave/download/" width="635" height="47" id="menubar"></embed>
</object>
</noscript>
</body>
</html>
I did try moving the menu button with a separate CSS file but that failed since I have no idea how to use CSS. I tried putting a div tag in order to move it using CSS (using dreamweaver) and I think thats when the buttons stopped appearing when I previewed it.
Thanks in advance for the help