Demo32 Flash Intro     |     home
How I did it   |   Screen Snapshots
How I did it
1. I downloaded the ZIP file from the FreeFlashIntros web site, and unzipped the file.

2. I uploaded the .swf file to my web site

3. I copied a section of the code (see below) from the "index.html" file that came in
the zip file and pasted it into a 'Build your own web gem'/'Insert HTML Code'
(depending if you are using Trellix or CuteSITE Builder)

4. I published my Trellix/CSB file

5. I had to go in using FTP and manually edit the name of one of the pages to 'main.html'


Code used:

<center>
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
     codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
     ID=dove WIDTH=585 HEIGHT=307>
     <PARAM NAME=movie VALUE="dove.swf">
     <PARAM NAME=loop VALUE=false>
     <PARAM NAME=quality VALUE=high>
     <PARAM NAME=bgcolor VALUE=#FFFFFF>
     <EMBED src="dove.swf" quality=high bgcolor=#FFFFFF loop=false
         WIDTH=585 HEIGHT=307 TYPE="application/x-shockwave-flash"
        PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
    </EMBED>
</OBJECT>
</center>