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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to import flash buttons from dreamweaver?

Status
Not open for further replies.

qwert85103

Technical User
Dec 27, 2003
162
US
How to import flash buttons from dreamweaver into frontpage?

Thanks.
 
Import the .swf flash files for the the buttons into your FP web and then you'll need to add the code on the page to display the buttons. You could probably copy the code from the page you have in dreamweaver?

You could also use a tool like devices for FrontPage to help you with the coding and modifying any parameters of flash files or multimedia files in FrontPage - there is a link to it on my homepage at
Here is a sample of the code used to call a flash file on a page:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" WIDTH="191" HEIGHT="119">
<param NAME="movie" VALUE="flash/globe.swf">
<param NAME="quality" VALUE="high">
<param NAME="bgcolor" VALUE="#FFFFFF">
<embed src="flash/globe.swf" quality="high" bgcolor="#FFFFFF" WIDTH="191" HEIGHT="119" TYPE="application/x-shockwave-flash" PLUGINSPAGE=" </embed>
</object>

Where you would need to replace flash/globe.swf with the path and name of your own flash file + the width and height values.

HTH
Tiffany

Microsoft MVP - FrontPage
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top