getMenuID()
Availability
Adobe Dreamweaver MX.
Description
Only valid for menu buttons. Adobe Dreamweaver calls the getMenuID() function to get the ID of the menu that should appear when the user clicks the button.
Arguments
None.
Returns
Adobe Dreamweaver expects a string that contains a menu ID, which is defined in the menus.xml file.
Example
function getMenuID(){ var dom = dw.getDocumentDOM(); var menuID = ''; if (dom) { var view = dom.getView(); var focus = dw.getFocus(); if (view == 'design') { menuID = 'DWDesignOnlyOptionsPopup'; } else if (view == 'split') { if (focus == 'textView') { menuID = 'DWSplitCodeOptionsPopup'; } else { menuID = 'DWSplitDesignOptionsPopup'; } } else if (view == 'code') { menuID = 'DWCodeOnlyOptionsPopup'; } else { menuID = 'DWBrowseOptionsPopup'; } } return menuID;}