This is a two-column table with the menu anchored in the left table cell.
The menu should remain anchored in the cell as the table is resized
(within the limitations of the specified table size). Here are the
steps for creating this type of menu:
1) Create a floating menu by checking Float in Global
Settings - Menu Type. You can leave the x,y coordinates set to 0.
2) Select the first menu item, click Condition in Menu
Item Settings, and input the following code in the Suffix box:
function stgtxy()
{
var x=10,y=10;
for(var o=stgObj("stTABLE");o;o=o.offsetParent)
{
x+=parseInt(o.offsetLeft);
y+=parseInt(o.offsetTop);
}
return [x,y];
}
st_cm.x="stgtxy()[0]";
st_cm.y="stgtxy()[1]+stgct()";
3) Add the menu to a page contaiining a table.
4) Set the ID of the table cell <td> that the floating menu aligns to
as stTABLE, as in the following example:
<td width="150" id="stTABLE"></td>