Image 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"
- Default 3-state images for all items -
- Inactive items
- Label text aligned to center
- 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=apImageMenu.class Width=144
Height=204 mayscript>
<param name="Copyright" value="Apycom Software - www.apycom.com">
<param name="alignText" value="center">
<param name="backColor" value="ffffff">
<param name="backHighColor" value="ffffff">
<param name="fontColor" value="0">
<param name="fontHighColor" value="FFFFFF">
<param name="defaultImage" value="pix/bt2.gif,pix/bt1.gif,pix/bt3.gif">
<param name="font" value="Courier,11,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,ex4.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
|