Macromedia Flash movie does not function as expected when you insert the movie into a FrontPage Web (265033)
The information in this article applies to:
- Microsoft FrontPage 2002
- Microsoft FrontPage 2000
This article was previously published under Q265033 SYMPTOMS When you try to insert a Macromedia Flash movie into a
Microsoft FrontPage Web, the movie may not function as expected. RESOLUTION To resolve this issue, follow these steps:
- Save your Flash production as a movie file in the My
Documents folder.
Note You must save your Flash movie file with the .swf
extension. - Start FrontPage.
- On the File menu, click Open Web.
- In the Open Web dialog box, select the web that you want, and then click Open.
- On the File menu, click Import.
- In the Import dialog box, click Add File.
- In the Add File to Import List dialog box,
select the Flash movie file that you saved in step 1, and then click Open.
Notice that this file appears in the Import dialog box. - Click OK.
Notice that this file appears in the Folder
list. - Select the page of your FrontPage web into which you want
to insert the Flash movie, and then click where you want to insert the Flash
movie.
- Do one of the following:
- In FrontPage 2002, click Web Component on the Insert menu. In the Component type list, select Advanced Controls. in the Choose a control list, select Plug-In. Click Finish.
- In FrontPage 2000, point to Advanced on the Insert menu, and then click Plug-In.
- In the Plug-In Properties dialog box, click Browse.
- In the Select Plug-In Data Source dialog
box, select the Flash movie that you imported into the web, and then click OK.
- In the Plug-In Properties dialog box, in the Height box, type the height of your Flash movie. In the Width box, type the width of your movie, and then click OK.
- On the File menu, click Preview in Browser.
Notice that your Flash movie plays on the page that you
preview. MORE INFORMATIONMicrosoft
provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft
Certified Partners, please visit the following Microsoft Web site: For more information about the support options that are available
and about how to contact Microsoft, visit the following Microsoft Web site: If you want FrontPage to check for the Flash
plug-in and, if is not present, to go to the Macromedia.com Web site and
download it, insert the following code between the <BODY></BODY>
tags:
<SCRIPT LANGUAGE="JavaScript">
<!--
function checkForShockwave()
{
navigator.plugins.refresh();
if ( navigator.plugins["Shockwave Flash"] )
parent.location.reload();
else
setTimeout( "checkForShockwave()", 1000 );
}
var ShockMode = 0;
var OldVersionOfPlugin = 0;
if (navigator.mimeTypes &&
navigator.mimeTypes["application/x-shockwave-flash"] &&
navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin)
{
if (navigator.plugins && navigator.plugins["Shockwave Flash"])
ShockMode = 1;
else
OldVersionOfPlugin = 1;
}
if (!ShockMode &&
navigator.appName &&
navigator.appName.indexOf("Netscape") != - 1 &&
navigator.appVersion.indexOf("4.") != - 1 &&
navigator.javaEnabled() &&
netscape.softupdate.Trigger.UpdateEnabled() &&
document.cookie.indexOf("StartedShockwaveInstall") == -1)
{
var jarPath = new String("");
if (navigator.platform.indexOf("Win32") >= 0 )
jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflash32.jar"
else if (navigator.platform.indexOf("Win16") >= 0 )
jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflash16.jar"
else if (navigator.platform.indexOf("MacPPC") >= 0 )
jarPath = "http://download.macromedia.com/pub/shockwave/jars/english/silentflashppc.jar"
if (jarPath.length)
{
netscape.softupdate.Trigger.StartSoftwareUpdate (jarPath, netscape.softupdate.Trigger.FORCE_MODE);
document.cookie='StartedShockwaveInstall;path=/;'
setTimeout("checkForShockwave()", 1000);
}
}
//-->
</SCRIPT>
For more information about plug-ins, click Microsoft FrontPage Help on the Help menu, type plug-in in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.
For more information about how to insert a
video, click Microsoft FrontPage Help on the Help menu, type insert a video in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.
The third-party products that this article discusses are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.
Modification Type: | Minor | Last Reviewed: | 8/10/2004 |
---|
Keywords: | kbopenfile kbScript kbAddIn kbprb KB265033 |
---|
|