FP2000: Page Transitions Do Not Appear in a Browser

ID: Q239557


The information in this article applies to:
  • Microsoft FrontPage 2000


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.


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> 


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.


  3. Your tag will look similar to the following:
    
    <meta http-equiv="Page-Enter" content="blendTrans(Duration=3.0)"> 
  4. Use the cut and paste operation to place the meta tag before all other meta tags in the source code.


  5. 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> 
  6. On the File menu, click Save.



STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.


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.

Additional query words: fp2k front page

Keywords : kbdta
Version : WINDOWS:
Platform : WINDOWS
Issue type : kbbug


Last Reviewed: November 17, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.