Flash Gallery Maker-a wonderful photo album maker, photo slideshow builder and flash slideshow creator
When you publish your flash photo slideshow, the software would generate xml+html+swf files and some other assets in a output folder. the code in html file and xml file define some file path and assets location to tell the flash player how to find the needed files and play them. So don't change file path and assets location thoughtlessly. You should keep the output folder as the same as it generated.
When you have uploaded your flash sliderslide folder generated by Flash Gallery Maker, if you want to embed the flash slideshide to your personal website, you should paste the HTML code of the generate html file included in the <object> and <embed> tags (see example below) the existing HTML document, and then change the pasted code according to the xml file and swf file location.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="100%">
<param name="movie" value="camping.swf?xml_path=slides.xml" />
<param name="quality" value="high" />
<param name="allowFullScreen" value="true" />
<embed src="camping.swf?xml_path=slides.xml" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%" allowFullScreen="true"></embed>
</object>
The code block marked by red color is the point that you should pay much attention to when you want to embed your flash slideshow to your webpage to playback. Because if you want to show your flash slideshow properly, you should confirm that the swf file and xml file address is just in consistent with your upload file path on your web server. If the address is incorrect, your slideshow can't play rightly and the hint of "Load Fail" will pop up. So when you encounter a "Load Fail" problem, the first thing you are supposed to do is to check whether the file address between <object> and </object> tags is just right.
