I have a swf file located here: http://www.shellstattoos.com/carousel/carousel/carousel.swf The problem is that when I embed it on any page, ie:http://www.shellstattoos.com/test.html It does not load. I will send $10 paypal for the first person to resolve/fix this. It use to work just fine but when I switched hosts, it stopped working and no changes were made to the files at all.
Like I said, It was working fine and none of the paths changed when I moved to the new host. This supposed to work just by adding the code below: <object width="550" height="400"> <param name="movie" value="carousel.swf"> <embed src="carousel.swf" width="550" height="400"> </embed> </object> Code (markup):
It is not the flash file path. It is the xml file, xml files path maybe hardcoded in flash keep this file (vars_carousel.xm) in your root folder and icons folder (which contains images)
make sure images on this file http://www.shellstattoos.com/vars_carousel.xml exist also remove extra dash (-----------------------------) it makes xml invalid/not well formed
That is exactly how it is set up. Weird thing. In a subfolder, it works just fine: http://www.shellstattoos.com/carousel/carousel.swf When I upload the files to my root folder, it doesn't work: http://www.shellstattoos.com/carousel.swf
try adding a forward slash in front of the swf path : <object width="550" height="400"> <param name="movie" value="carousel.swf"> <embed src="/carousel.swf" width="550" height="400"> </embed> </object> Code (markup):