toolbars.xml: Can't add dw.getRecentFileList() and dw.saveDocumentAs()
I want to customize my toolbars.xml to add a "Recent File List" and "Save As" icon/option. After reading several Adobe docs, I thought I knew what to do but the:
- dw.getRecentFileList() does nothing
- dw.saveDocumentAs() gives an error (see screenshot below)
All I did was copy an existing button and make the desired changes. For example:
<button id="DW_OpenRecentFiles"
image="Toolbars/images/MM/viewoptions.png"
MMString:tooltip="DW_Open/button/tooltip" // Note: This has not been updated
domRequired="FALSE"
command="dw.getRecentFileList()"/>
<button id="DW_SaveAs"
image="Toolbars/images/MM/bcc.png"
MMString:tooltip="DW_SaveAll/button/tooltip" // Note: This has not been updated
command="dw.saveDocumentAs()"/>
What am I missing here?

