Explanation of menu_builder.js file.
At first a description of the general layout of the file, followed by a more detailed description of every variable and the array structure.
The red colored items belong the the Javascript syntax and are case sensitive and critical. Var will generate an error, so will VAR.var LowBgColor="red"; |
var HighBgColor="lightblue"; |
var FontLowColor="yellow"; |
var FontHighColor="blue"; |
var BorderColor="yellow"; |
var BorderWidth=1; |
var BorderBtwnElmnts=1; |
var FontFamily="comic sans ms,technical,arial"; |
var FontSize=9; |
var FontBold=1; |
var FontItalic=0; |
var MenuTextCentered=1; |
var MenuCentered="center"; |
var MenuVerticalCentered="center"; |
var ChildOverlap=.1; |
var ChildVerticalOverlap=.1; |
var LeftPadding=2; |
var TopPadding=2; |
var StartTop=0; |
var StartLeft=200; |
var VerCorrect=0; |
var HorCorrect=0; |
var FirstLineHorizontal=0; |
var MenuFramesVertical=1; |
var DissapearDelay=1000; |
var TakeOverBgColor=1; |
var FirstLineFrame="MyFrameOne"; |
var SecLineFrame="MyFrameTwo"; |
var DocTargetFrame="MyFrameTwo"; |
var HideTop=0; |
var TargetLoc=""; |
var MenuWrap=1; |
var RightToLeft=0; |
var UnfoldsOnClick=0; |
var WebMasterCheck=0; |
var ShowArrow=1; |
var KeepHilite=1; |
var Arrws=["images/whiteArrow.gif",5,10,"images/whiteDown.gif",10,5,"images/whiteLeft.gif",5,10]; |
function BeforeStart(){;} |
function AfterBuild(){;} |
function BeforeFirstOpen(){;} |
function AfterCloseAll(){;} |
The variables