Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

FP2000: Page Transitions Do Not Appear in a Browser


View products that this article applies to.

This article was previously published under Q239557

↑ Back to the top


Symptoms

When you insert a page transition on a page and then preview the page in a Web browser, the page transition is not displayed.

↑ Back to the top


Cause

This problem occurs when another Dynamic HTML (DHTML) tag or Script tag is placed before the page transition meta tag within the source code.

NOTE: This problem can occur if you insert a page transition after you have formatted some text with a Dynamic HTML effect.

Here is an example of the HTML showing a dynamic animation tag being placed before the page transition meta tag:
<head>
<script language="JavaScript" fptype="dynamicanimation" src="animate.js">
</script>
<title>Distributed Systems</title>
<meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)">
</head>
				

↑ Back to the top


Resolution

To resolve this issue, use one of the following methods.

Method 1: Insert the Page Transition Before All Scripts and DHTML Effects

Apply the page transition before you insert scripts or DHTML effects on the page. This inserts the meta tag for the page transition in the appropriate location.

Method 2: Place the Page Transition Before All Script and DHTML Tags by Altering HTML Source Code

1.In FrontPage, click the HTML tab.
2.Select the page transition meta tag. Your tag will look similar to the following:
<meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)">
					
3.Use the cut and paste operation to place the meta tag before all other meta tags in the source code. Your code should look similar to the following:
<head>
<meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)">
<script language="JavaScript" fptype="dynamicanimation" src="animate.js">
</script>
<title>Distributed Systems</title>
</head>
					
4.On the File menu, click Save.

↑ Back to the top


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

↑ Back to the top


More information

For more information about page transitions, click Microsoft FrontPage Help on the Help menu, type page transitions in the Answer Wizard, and then click Search to view the topic.

For more information about Dynamic HTML effects, click Microsoft FrontPage Help on the Help menu, type DHTML in the Answer Wizard, and then click Search to view the topic.

↑ Back to the top


Keywords: KB239557, kbpending, kbbug

↑ Back to the top

Article Info
Article ID : 239557
Revision : 1
Created on : 12/2/2000
Published on : 12/2/2000
Exists online : False
Views : 222