Javabase LogoExample of changing parameter frame
  Home
  Applets
    Menus
    Site Mapping
    Scrollers
    FX Menus
    Image FX
  FAQ
  Register
  Contact
Back to other parameters

 

Example 1
Source menu file
Javabase Applet
Menu source
<?xml version = "1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE Menu PUBLIC "-//Javabase//DTD TreeMenu3D 1.0//EN" "http://www.javabase.co.uk/TreeMenu3D/TreeMenu3D.dtd">
<Menu textcolor="0000AA" tooltiptext="Tooltip" frame="_top" gap="4">
   <Item url="http://news.bbc.co.uk/" name="News\Headlines"/>
   <SubMenu name="Search">
      <Item tooltiptext="Go Search!" url="http://www.google.com/" name="Google"/>
      <Item tooltiptext="Tooltip" url="http://www.yahoo.com/" name="Yahoo"/>
   </SubMenu>
   <Item url="http://java.sun.com/" name="Java"/>
</Menu>

 

Example 2
Source menu file
Javabase Applet
Menu source
<?xml version = "1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE Menu PUBLIC "-//Javabase//DTD TreeMenu3D 1.0//EN" "http://www.javabase.co.uk/TreeMenu3D/TreeMenu3D.dtd">
<Menu textcolor="0000AA" tooltiptext="Tooltip" frame="_blank" gap="4">
   <Item url="http://news.bbc.co.uk/" name="News\Headlines"/>
   <SubMenu name="Search">
      <Item tooltiptext="Go Search!" url="http://www.google.com/" name="Google"/>
      <Item tooltiptext="Tooltip" url="http://www.yahoo.com/" name="Yahoo"/>
   </SubMenu>
   <Item url="http://java.sun.com/" name="Java"/>
</Menu>
Frame
This can be set to the name of any frames which you are using on your site.You can also use the four built-in frame names:
_blankOpen link in a new window
_topOpen link in the frame taking up the whole window
_selfOpen link in the frame which the applet is in

 

Back to other parameters