I'm a complete newbie if it comes to making websites, and I'm stuck with this problem:
I built a small flash website for a party and if I go to the website Infekted.be there's the index page, but the .swf I refer to in my .html is not showing up, this is my code (built in Dreamweaver):
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Infekted Party</title>
<link href="main.css" rel="stylesheet" type="text/css" />
<style type="text/css"> body { margin: 0px; } </style>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<div id="wrapper">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1024" height="768" id="FlashID" title="Infekted Site">
<param name="movie" value="InfektedSite.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="15.0.0.0" />
<!-- Met deze param-tag wordt gebruikers met Flash Player 6.0 r65 en hoger gevraagd de nieuwste versie van Flash Player te downloaden. Verwijder deze tag als u niet wilt dat gebruikers deze vraag zien. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- De volgende object-tag is voor andere browsers dan Internet Explorer. Verberg deze tag daarom in IE met IECC -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="InfektedSite.swf" width="1024" height="768">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="15.0.0.0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- In de browser wordt de volgende alternatieve inhoud voor gebruikers met Flash Player 6.0 en ouder weergegeven. -->
<div>
<h4>Voor het weergeven van de inhoud op deze pagina is een nieuwe versie van Adobe Flash Player vereist.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Adobe Flash Player ophalen" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>
I tried several things, changed the index around a couple of times. And it seems to do fine in local previews, just not once it's online.
The site is hosted at one.com if that makes any difference.
I have no clue as to what I'm doing wrong, I hope one of you Developer Yodas will be able to tell me.
Cheers,
Ayla

New Topic/Question
Reply


MultiQuote




|