help . needed please

Status
Not open for further replies.

vibeman

New Member
Messages
4
Reaction score
0
Points
0
i have uploaded my index page with the flash content . the page loads but the flash isnt there ..,? and advice
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
i have uploaded my index page with the flash content . the page loads but the flash isnt there ..,? and advice

Loads fine here, although because there's no pre-loader on the flash it may be taking some time to download to your pc. Might wanna look into adding something like a loading bar so you know where it's at.
 

Joshua203

New Member
Messages
194
Reaction score
2
Points
0
you may want to check the index page because when i view http://marklittle.co.cc/flash/marklittle.swf it works, on the main url it does not

maybe this piece
Code:
,'MarkLittle','src','flash/marklittle','quality','high'

should be
Code:
,'MarkLittle','src','flash/marklittle.swf','quality','high'

?
 
Last edited:

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
http://marklittle.co.cc/


you saying you can see it on tis link yes? because i dont?


Actually there wasn't a link in the original post, so I was using http://marklittle.exofire.net which is what was listed as your domain on the AIP. That explains the problem.


Edit: after checking that link, firefox is not able to locate any media actually -on- the page; the Media tab is missing which means however the page is coded, it's not even seeing the embed to try and load it. Not sure how to fix it, but that's what's causing the new problem.
 
Last edited:

vibeman

New Member
Messages
4
Reaction score
0
Points
0
ok i have gone back and redone the index.html
its not a hard task to add a flash swf file to html ie i/nsert/media/flash dreamweaver ... but still i dont see it on the page i have tested it on ie and its fine ??? maybe a mod can take the index and swf and play it on the hdd i dont know what to do next ??? :(


i have also change the code now (joshua) WITH no joy lolz ummm strange??/
here is the code
<!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>MarkLittle</title>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>
<div align="center">


<p>welcome</p>
<p>

<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','766','height','700','src','flash/marklittle.swf','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','flash/marklittle.swf' ); //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="766" height="700">
<param name="movie" value="flash/marklittle.swf" />
<param name="quality" value="high" />
<embed src="flash/marklittle.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="766" height="700"></embed>
</object></noscript>
.</p>
</div>
</body>
</html>
 
Last edited:

vibeman

New Member
Messages
4
Reaction score
0
Points
0
all done i didnt know why i didnt think f it before i linkied into the fooker lol with this code


<html>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/
cabs/flash/swflash.cab#version=6,0,40,0"
width="999" height="700" id="mymoviename">
<param name="movie"
value="http://marklittle.co.cc/flash/marklittle.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="http://marklittle.co.cc/flash/marklittle.swf" quality="high" bgcolor="#ffffff"
width="999" height="700"
name="mymoviename" align="" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
</body>
</html>
 
Status
Not open for further replies.
Top