This article describes how to preserve changes to Outline.js and Animate.js files.
Text Animations
The following instructions demonstrate how to change FrontPage Dynamic HTML (DHTML) for text animation in the Animate.js file. You must make the following changes so that FrontPage does not overwrite your modified script.- In the script tag, change type="dynamicanimation" to type="mydynamicanimation".
- In the first script statement, change all instances of "dynamicanimation" to "mydynamicanimation".
- Throughout the HTML content, change all instances of dynamicanimation= to mydynamicanimation=.
- Change function dynAnimation to function mydynAnimation.
- In the body tag, change onload="dynAnimation()" to onload="mydynAnimation()".
Collapsible Outlines
The following instructions demonstrate how to change FrontPage Dynamic HTML (DHTML) for collapsible outlines in the Outline.js file. You must make the following changes so that FrontPage does not overwrite your modified script.- In the script tag, change fptype="dynamicoutline" to fptype="mydynamicoutline".
- In function dynOutlineEnabled, change "dynamicoutline" to "mydynamicoutline".
- Throughout the HTML content, change all instances of dynamicoutline to mydynamicoutline.
- Change function dynOutline to function mydynOutline.
- In the body tag, change onclick="dynOutline()" to onclick="mydynOutline()".