PDA

View Full Version : Flash uploads but can't be seen


choppervon
07-22-2009, 11:13 PM
I've made a flash site in Dreamweaver CS3 using Flash 8, uploaded it but it won't play. I've tried using Flash MX, Frontpage, different hosts, but it's the same, a black page page (my background) w/ a slight white blip across the screen on refresh. Here's the site (doghouselords.com) and the code, am I missing something? Thanks in advance:

<!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>Doghouse_Lords_main</title>
<style type="text/css">
<!--
body {
background-color: #000000;
}
#apDiv1 {
position:absolute;
left:127px;
top:-3px;
width:961px;
height:750px;
z-index:1;
}
-->
</style>
<script src="../Doghouse Lords graphics/Website/DL DW/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>
<div id="apDiv1">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','770','heigh t','650','src','Doghouse Lords coming soon','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','Doghouse Lords coming soon' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="770" height="650">
<param name="movie" value="Doghouse Lords coming soon.swf" />
<param name="quality" value="high" />
<embed src="Doghouse Lords coming soon.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="770" height="650"></embed>
</object>
</noscript></div>
</body>
</html>

loadlearn
07-23-2009, 12:57 AM
<script src="../Doghouse Lords graphics/Website/DL DW/Scripts/AC_RunActiveContent.js"

The above might be the culprit.

Where is that file?

If I try http://www.doghouselords.com/Doghouse%20Lords%20graphics/Website/DL%20DW/Scripts/AC_RunActiveContent.js , I get a 404.

choppervon
07-23-2009, 02:19 AM
Yeah, I noticed that before, DL DW is a folder I was keeping an older ver. of the site in. I know its a nec. file, I've tried uploading it but doesn't change anything. Where should I put it/ get another?

loadlearn
07-23-2009, 02:57 AM
Well, you seem to have uploaded it to the base directory, which is fine, but you would have to update your .html,

From:

<script src="../Doghouse Lords graphics/Website/DL DW/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>

To:

<script src="AC_RunActiveContent.js" type="text/javascript"></script>

choppervon
07-23-2009, 03:30 AM
That did it, thanks alot...

loadlearn
07-23-2009, 04:43 AM
Welcome. :)