Tutorial: How to get the most out of your vB3 Popup Menus
by
29 Jan 2004
There's two elements to having a popup-menu in vB3 ... (the first examples are from my Flash Player addon - see working site example @ http://www.mobileforces.org) 1) the entry on the (navbar) template where you want it to popup PHP Code:
<td id="flashplayer" class="vbmenu_control"><a href="#flashplayer">$vbphrase[flash_addon_title]</a> <script type="text/javascript"> vbmenu_register("flashplayer"); </script></td>
PHP Code:
<div class="vbmenu_popup" id="flashplayer_menu" style="display:none">
PHP Code:
<td id="somelabel" class="vbmenu_control"><a href="#somelabel">Some Label</a> <script type="text/javascript"> vbmenu_register("somelabel"); </script></td>
PHP Code:
<div class="vbmenu_popup" id="somelabel_menu" style="display:none">
Please let me know if I can make this clearer |