Bluesdejour Clips Player ~page 4
7 Frame Harmony
The 7 Frame design uses a freeware (?) cross frame menu program from
Harmony Hollow with a GUI Interface. It's the fastest & easiest to learn
&
maintain. The only hack needed is a small change within the exit script.
The
generic look of the menus is greatly reduced when viewed
through the newer
Microsoft browsers most commonly in use & the
overall look can be enhanced
via bgcolor choices leaning toward gray.
The color of this page for example is
about as far as we might
want to go into Blue.
In this case there is a separate frame for each menu which makes the
construction of this clips player easier. The frameset is shown in the
example.
All 5 menus for this Player can be made from a GUI interface. All but
the [Exit
Player] menu work fine as built from the GUI interface. Our
example of the
exit menu script is below. The necessary change from
the GUI generated script
is ...}{parent.top.location.href...
in the <head> section.
& it's easier to change the size of the menu boxes themselves sans GUI.
Use a
simple text editor to alter the "font-size=0px';...entry in the
<body> section of
each menu's htm.
Exit Menu
<HTML>
<HEAD>
<TITLE>Exit Menu </TITLE>
<script language="JavaScript">
function gothere(mname)
{
var thisform = mname;
if (thisform.selectsite.options
[thisform.selectsite.options.selectedIndex].value != "nolink")
{parent.top.location.href=thisform.selectsite.options
[thisform.selectsite.options.selectedIndex].value;}
}
</script>
</HEAD>
<BODY BGCOLOR="#0068a0" TEXT="#e8e8e8" LINK="#0000FF
VLINK="#800080" ALINK="#FF0000">
<FORM name="Exit" action="javascript:gothere(document.Exit);" method="post">
<SELECT name="selectsite" onChange="gothere(document.Exit);" style="font-size='13px'; font-
family='MS Sans Serif'; font-weight=500; font-style='Normal'; text-decoration='None'; width=">
<OPTION value="exit/exitpage.htm" SELECTED style="background-
color='#990000';color='#ffffff'">Exit Player
<OPTION value="../exit/exitpage.htm" style="background-color='339966';color='ffffff'">
~Exit Player
</select>
</form>
</BODY>
</HTML>
Examples
Clips Player Information 4