Specifications

639
Arguments
None.
Returns
An array of all toolbar IDs.
Example
var tb_ids = new Array();
tb_ids = dom.getToolbarIdArray();
dom.getToolbarLabel()
Availability
Dreamweaver MX
Description
Obtains the label of the specified toolbar. You can use dom.getToolbarLabel() for menus that
show or hide toolbars.
Arguments
toolbar_id is the ID of the toolbar, which is the value of the ID attribute on the toolbar tag in
the toolbars.xml file.
Returns
label which is a name string that is assigned as an attribute on the toolbar tag.
Example
var label = dom.getToolbarLabel("myEditbar");
dom.setShowToolbarIconLabels()
Availability
Dreamweaver MX
Description
Tells Dreamweaver to show the labels of buttons that have labels. In the Dreamweaver 4
workspace, this function operates on the document that is specified by the DOM. In the
Dreamweaver MX workspace, there is only one set of toolbars, so the function operates on that
set.
Dreamweaver always shows labels for nonbutton controls, if the labels are defined.
Arguments
bShow is a Boolean value that indicates whether to show or hide labels for buttons.
Returns
Nothing.
Example
dom.setShowToolbarIconLabels(true);