XP Web Buttons Frame Example
This example demonstrates:
- Using the target parameter with frames
- Javascript calls - "Change all" item allows to change the contents of all frames by single click. See also "Javascript tips"
- Separators
- Label text aligned to center
- Button type 3
- Vertical menu direction
HTML Source
exframe.html
<FRAMESET cols=135,85%>
<FRAME name = left_wnd scrolling=no src="leftpage.html">
<FRAMESET rows=15%,85%>
<FRAME name = top_wnd scrolling=no src="toppage.html">
<FRAME name = main_wnd scrolling=yes src="mainpage.html">
</FRAMESET>
</FRAMESET>
leftpage.html
<APPLET code=apXPButtonMenu.class height=265 width=115
mayscript>
<param name="Copyright" value="Apycom Software - www.apycom.com">
<param name="isHorizontal" value="false">
<param name="backColor" value="CCCCFF">
<param name="buttonColor" value="ffbbff">
<param name="fontColor" value="000000">
<param name="fontHighColor" value="ffffff">
<param name="buttonType" value="3">
<param name="alignText" value="center">
<param name="font" value="Courier,12,0">
<param name="menuItems" value="
{Applet,index.html,_parent}
{-}
{Main in Main,mainpage.html,main_wnd}
{Top in Main,toppage.html,main_wnd}
{Left in Main,leftpage.html,main_wnd}
{Top in Top,toppage.html,top_wnd}
{Main in Top,mainpage.html,top_wnd}
{Left in Top,leftpage.html,top_wnd}
{Change All,javascript:changeAll(),_}
{-}
{Previous,ex12.html,_parent}
{Index,../index.html,_parent}
">
</APPLET>
<script language="Javascript">
function changeAll()
{
open('mainpage.html','left_wnd');
open('leftpage.html','main_wnd');
open('leftpage.html','top_wnd');
}
</script>
How to setup the menu
|