Depending on the way the slideshow was made depends on how it can brought to a page.
To start with this code is wrong.
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="465" height="289" id="Flash1">
<param name="movie" value="http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf">
<param name="quality" value="High">
<param name="scale" value="ExactFit">
<param name="wmode" value="Window">
<param name="play" value="true">
<param name="loop" value="true">
<param name="menu" value="false">
<param name="sAlign" value="L">
<embed src="http://www.anchorrealtyltdtc.com/Show1/SlideShow.swf" width="465" height="289" quality="High" wmode="Window" loop="true" play="true" menu="false" scale="ExactFit" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
should be
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="465" height="289" id="Flash1">
<param name="movie" value="/Show1/SlideShow.swf">
<param name="quality" value="High">
<param name="scale" value="ExactFit">
<param name="wmode" value="Window">
<param name="play" value="true">
<param name="loop" value="true">
<param name="menu" value="false">
<param name="sAlign" value="L">
<embed src="/Show1/SlideShow.swf" width="465" height="289" quality="High" wmode="Window" loop="true" play="true" menu="false" scale="ExactFit" type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
the problem starts if the flash program used to make the slideshow uses a xml file and a images folder. When this is the case the swf will look for the xml file in the same directory. And when it can't find it one of two things will happen 1/ you get a blank screen, 2/ you just get the player controls .
In programs were all the information is stored on the swf file the above code should solve the problem.
To solve the problem if you have a xml file and folders you have two options.
1/ move the xml and the folders into the same directory of the page published
2/ by putting a ifame of the exact size of the movie on your page. Then make a new page put a html box on the page enter the code above but remove the /Show1/ from this
<param name="movie" value="/Show1/SlideShow.swf">
and this part
<embed src="/Show1/SlideShow.swf"
make the box the exact size of you movie, place this in the top left of the page.then in page properties, make the page the same size as your movie and check the center in page. Now save and publish to the same place as your xml swf and folder are in this case the /Show1 folder. Then no your with the iframe open the iframe and in the url enter the full url of the page you published in the Show1 . Close save and publish to the same place you puplished it before.
You can see two of this sort of iframe on this site notice the two menus. Here