To insert Flash SWF to your web
page, normally you need to upload the Flash .swf file to same
folder as your web page, and add HTML code generated by Aleo
products to your web page. But if your web hosting does not
host Flash .swf file or you can not upload the Flash .swf file
to your web server, things will be different.
This tutorial will show you how to insert Flash SWF file to
your web page if your web server does not support Flash .swf
file.
Step 1: Upload the Flash .swf file to a web hosting
on Internet, and get the full url address of the uploaded .swf
file.
Firstly, you need to upload your Flash .swf file to a web hosting
on Internet, then get the full url address of the uploaded .swf
file. You can upload the .swf file to a web server of your friends,
or you can upload the file to a free web hosting, for example,
Microsoft
Office Live Small Business.
Upload Flash SWF file to the Document Gallery of
your website on Microsoft Office Live Small Business.
1. Sing up on Microsoft
Office Live Small Business, then sign in to your control
panel, and click "Web Site" on the top navigation
bar.

2. Click "Document Gallery" in the left navigation
bar.

3. In "Documents" panel, click "Upload"
button, then in the popup "Document Uploader" dialog,
select the Flash SWF file, add to list and upload.

4. After uploading, the uploaded files will be listed in
the "Document" section.

4. Get the full url address of the uploaded Flash .swf file.
You can click the swf file, open it, then copy the url address
from the address bar. The link address should look like http://kevinliao2001.goods.officelive.com/Documents/flash.swf
.
Step 2: Embed Flash SWF to your web page.
The next step is to insert HTML code to your web page and
embed the Flash SWF.
You need to copy the HTML code generated by the Aleo Products,
then modify the code by replacing the swf file address to
that we get in Step 1.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="300" height="120">
<param name="movie" value="http://kevinliao2001.goods.officelive.com/Documents/flash.swf"
/>
<param name="quality" value="high"
/>
<param name="allowScriptAccess" value="always"
/>
<param name="wmode" value="transparent">
<embed src="http://kevinliao2001.goods.officelive.com/Documents/flash.swf"
quality="high"
type="application/x-shockwave-flash"
WMODE="transparent"
width="300"
height="120"
pluginspage="http://www.macromedia.com/go/getflashplayer"
allowScriptAccess="always" />
</object>
You need to replace swf file address to your own Flash filename,
there are two places in this code where you must do this.
And you also need to replace the value of "width"
and "height" with that of your own Flash file. There
are also two places in this code where you must do this.
Sometimes the above code may not work, for example, if you
are going to insert the Flash banner to a Wordpress based
blog, you need to use below codes:
<embed src="http://kevinliao2001.goods.officelive.com/Documents/flash.swf"
quality="high" allowscriptaccess="always"
type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
align="middle" height="300"
width="120"></embed>