View previous topic :: View next topic |
Author |
Message |
BareKnuckles -
Joined: 01 Feb 2004 Posts: 6
|
Posted: Tue Apr 06, 2004 7:17 pm Post subject: Flash Problem |
|
|
Hi, I am having a problem that I have not had before. Here's the scenario:
Using Dreamweaver MX I created a simple html page with some flash embedded in tables. When I view the page from any computer on my network everything works fine. However, when others view the page they cannot see the flash, just white boxes where the flash should be.
Here's a link: http://bareknuckles.net/index1.html
What's up with that? :?: |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Wed Apr 07, 2004 2:03 pm Post subject: Re: Flash Problem |
|
|
BareKnuckles,
Your site seems to be down. Please post the HTML source code of this index.html page here so that we can see what's wrong with it. _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
BareKnuckles -
Joined: 01 Feb 2004 Posts: 6
|
Posted: Wed Apr 07, 2004 2:40 pm Post subject: |
|
|
Down??? Did you see anything at all? Anyways, here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#000000">
<table width="900" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="600" height="50">
<param name="movie" value="flash/title.swf">
<param name=quality value=high>
<param name="wmode" value="transparent">
<embed src="flash/title.swf" width="600" height="50" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object></td>
<td width="50"> </td>
</tr>
<tr>
<td width="50" valign="top"> <pre> </pre></td>
<td width="850" colspan="2"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="800" height="400" align="absmiddle">
<param name="movie" value="file://///Server/c/Program Files/Abyss Web Server/htdocs/flash/intro.swf">
<param name=quality value=high>
<embed src="file://///Server/c/Program Files/Abyss Web Server/htdocs/flash/intro.swf" width="800" height="400" align="absmiddle" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"></embed>
</object></td>
<td width="50"> </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="425" align="left" valign="top"><a href="Replays.htm"><img src="logo.jpg" width="143" height="49" border="0"></a></td>
<td> </td>
</tr>
</table>
</body>
</html>
thanks! |
|
Back to top |
|
 |
Anonymoose -
Joined: 09 Sep 2003 Posts: 2192
|
Posted: Thu Apr 08, 2004 12:21 am Post subject: |
|
|
You've embedded the full path to your flash files instead of relative paths.
Quote: | <param name="movie" value="file://///Server/c/Program Files/Abyss Web Server/htdocs/flash/intro.swf"> |
If you create paths like this, anyone who is not on your LAN will not be able to view the flash files. It should be
<param name="movie" value="/flash/intro.swf"
Same goes for anywhere else the full path to a file on your PC appears in your code. |
|
Back to top |
|
 |
BareKnuckles -
Joined: 01 Feb 2004 Posts: 6
|
Posted: Thu Apr 08, 2004 12:34 am Post subject: doh |
|
|
Thanks, I fixed it and that was indeed my mistake. Thanks again.
:oops: |
|
Back to top |
|
 |
|