Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting Flash into FP 2003 1

Status
Not open for further replies.

PixelDiva

Programmer
Jul 1, 2003
22
US
Does anyone know how I can get a .swf file into FP 2003?
 
Drag and drop it into the folder list or import it into the web. As far as getting it to play on your web page, you'll just need to code it something like:

<OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;
codeBase = &quot; WIDTH=&quot;x&quot; HEIGHT=&quot;x&quot; id=&quot;XXXX&quot; ALIGN=&quot;CENTER&quot;>
<PARAM NAME=movie VALUE=&quot;XXXX.swf&quot;> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src=&quot;XXXX.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#FFFFFF&quot; WIDTH=&quot;x&quot; HEIGHT=&quot;x&quot; TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot;</OBJECT>

Where XXXX is the name of your .swf file and you'll need to replace the width and height x to the correct dimensions.

There are addins that help with adding multimedia on your web pages too. One from frontpage devices called Media Manager comes to mind. I have a link from to that one and several other FP addins.

HTH
Tiffany

Microsoft MVP - FrontPage
 
Thanks Tiffany, I needed to import some flash into FP and found this link. Great!
Dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top