Specifications
Objects 55
image="image_path"
Required. Specifies the path, relative to the Dreamweaver Configuration folder, to the icon file
that appears on the Insert bar. The icon can be in any format that Dreamweaver can render, but
typically it is a GIF or JPEG file format.
Example
image="Common/Table.gif"
showIf="DW_enabler"
Optional. Specifies that this item should appear on the Insert bar only if the given Dreamweaver
enabler is
true. If you do not specify showIf, the item always appears. The possible enablers are
_SERVERMODEL_ASP, _SERVERMODEL_ASPNET, _SERVERMODEL_JSP, _SERVERMODEL_CFML (for
both new and old versions of ColdFusion), _SERVERMODEL_CFML_UD4 (true only for UltraDev
version 4 of ColdFusion),
_SERVERMODEL_PHP, _FILE_TEMPLATE, _VIEW_CODE, _VIEW_DESIGN,
_VIEW_LAYOUT, and _VIEW_STANDARD.
You can specify multiple enablers by placing a comma (which means AND) between the enablers.
For example, if you want an object to appear only in Code view for an ASP page, specify the
enablers as
showIf="_VIEW_CODE, _SERVERMODEL_ASP". You can also specify NOT with "!".
Example
showIf="_VIEW_CODE, _SERVERMODEL_CFML"
enabled="DW_enabler"
Optional. Specifies that the item is enabled if
DW_enabler is true. If you do not specify enabled,
the item defaults to always enabled. The possible enablers are
_SERVERMODEL_ASP,
_SERVERMODEL_ASPNET, _SERVERMODEL_JSP, _SERVERMODEL_CFML (for both new and old
versions of ColdFusion),
_SERVERMODEL_CFML_UD4 (true only for UltraDev version 4 of
ColdFusion),
_SERVERMODEL_PHP, _FILE_TEMPLATE, _VIEW_CODE, _VIEW_DESIGN,
_VIEW_LAYOUT, and _VIEW_STANDARD.
You can specify multiple enablers by placing a comma (which means AND) between the enablers.
You can also specify NOT with
"!".
Example
enabled="_View_Standard"
checked="DW_enabler"
Required for checkbuttons. The item is checked if
DW_enabler is true. The possible enablers are
_SERVERMODEL_ASP, _SERVERMODEL_ASPNET, _SERVERMODEL_JSP, _SERVERMODEL_CFML (for
both new and old versions of ColdFusion),
_SERVERMODEL_CFML_UD4 (only for UltraDev version
4 of ColdFusion),
_SERVERMODEL_PHP, _FILE_TEMPLATE, _VIEW_CODE, _VIEW_DESIGN, and
_VIEW_LAYOUT.
You can specify multiple enablers by placing a comma (which means AND) between
them.You can also specify NOT with
"!".
Example
checked="_View_Layout"