User Guide
148 Chapter 11: Application
Returns
Nothing.
dreamweaver.validateFlash()
Availability
Dreamweaver MX.
Description
Determines whether Flash MX (or a later version) is installed on the local computer.
Arguments
None.
Returns
A Boolean value: true if Flash MX (or a later version) is installed on the local computer;
false otherwise.
Global application functions
Global application functions act on the entire application. They handle tasks such as quitting and
accessing Preferences.
dreamweaver.beep()
Availability
Dreamweaver MX.
Description
Creates a system beep.
Arguments
None.
Returns
Nothing.
Example
The following example calls dw.beep() to call the user’s attention to a message that the alert()
function displays:
beep(){
if(confirm(“Is your order complete?”)
{
dreamweaver.beep();
alert(“Click OK to submit your order”);
}
}
000_DW_API_Print.book Page 148 Wednesday, August 20, 2003 9:14 AM