|

|
Question for you web masters |
|
||||||
|
|
#1 |
|
Mayor
Join Date: Jul 2000
Location: MA.
Posts: 534
|
Question for you web masters
Hi All,
I have got this Flash animation that I would like to put on its own page on my web site. I use FrontPage 2000 to design my web. Is it possible to somehow import that Flash program to FrontPage so that when its page loads the Flash program will play. The Flash program is a .EXE file Thanks, CaptK |
|
|
|
| Sponsored Links |
|
|
|
|
#2 |
|
Owner
Join Date: Feb 2000
Location: Bardstown, KY
Posts: 13,030
|
Hi CaptainK!
Here is the code that will insert a swf file into an HTML document. The file location needs to be changed and the size needs to be changed. This will work if you can FTP the movie to your server.
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="250" height="100"> <param name=movie value="http://www.filelocation.com/Moviename.swf"> <param name=quality value=high> <embed src="http://www.filelocation.com/Moviename.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="250" height="100"> </embed> Scott Z. |
|
|
|
|
|
#3 |
|
Council
Join Date: Nov 2000
Location: Seattle
Posts: 270
|
The flash file cannot be exported as a EXE, it has to be a SWF file for you to embed it into a html document. If you don't have the original FLA file you can't convert the EXE to a SWF
Also, I have never used Frontpage, but I would think somewhere in it (if it is as good as it is supposed to be) is a Insert Media function, or Embed Media, Embed Flash, etc. Most WYSIWYG editors have this, I would think frontpage would to. It will ease your work some, but the code above works dandy. |
|
|
|