Slide show Flash Component

  • Thread starter GaryP via OfficeKB.com
  • Start date
G

GaryP via OfficeKB.com

I had design a web site and I would like to insert a zooming xml slideshow v2
that I downloaded from flash component web site, how can I insert it?
 
S

Spike

If you have a "SWF" file use the following code. Insert it with the HTML
fragment function. Replace the "XXXXXX" (in two places with the name of the
file.


<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="320"
HEIGHT="240"
id="slideshow">
<PARAM NAME="movie" VALUE="XXXXXX.swf" />
<PARAM NAME="quality" VALUE="high" />
<PARAM NAME="bgcolor" VALUE="#000000" />
<param name="allowScriptAccess" value="sameDomain" />

<EMBED src="XXXXXX.swf"
quality="high"
bgcolor="#000000"
WIDTH="320"
HEIGHT="240"
NAME="slideshow"
allowScriptAccess="sameDomain"
swLiveConnect="true"
TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>


Spike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top