Managed to find the problem. Will document it here for those that
follow. Thanks to all who helped.
The way I figured out what was going on, was by looking at the apache
server access logs, and seeing what url was being generated to load
the original flash file, as well as the subsequent urls generated for
the remaining files.
In my case the server was receiving:
/cake/INDEX.SWF for the original flash file
and was logging a 404 error.
I immediately understood the problem and changed the INDEX.SWF to img/
INDEX.SWF. It still didn't work, so I defined the base vars as Martin
suggested, and that did it.
For those interested, here is the full working html, where all
the .swf files are in cake/app/webroot/img/:
<OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000
codeBase=http://active.macromedia.com/flash2/cabs/
swflash.cab#version=4,0,0,0
id=index name=index width="100%" height="50807">
<param name="_cx" value="24262">
<param name="_cy" value="1344269">
<param name="Movie" value="img/INDEX.SWF"">
<param name="Src" value="img/INDEX.SWF">
<param name="WMode" value="Window">
<param name="Play" value="1">
<param name="Loop" value="-1">
<param name="Quality" value="High">
<param name="SAlign" value="L">
<param name=menu value=true>
<param name="Base" value="http://localhost/cake/img/">
<param name="Scale" value="ExactFit">
<param name="DeviceFont" value="0">
<param name="EmbedMovie" value="0">
<param name="BGColor" value="#ffffff">
<param name="SWRemote" value>
<embed base="http://localhost/cake/img/" src="img/INDEX.SWF"
quality="high" scale="exactfit" salign="L" bgcolor="#ffffff"
WIDTH="780" HEIGHT="418" NAME="index" TYPE="application/x-shockwave-
flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/
index.cgi?P1_Prod_Version=ShockwaveFlash">
</OBJECT>
Thanks to those who took the time to help.
Hope this helps someone else.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---