MACROMEDIA COLDFUSION STUDIO 5-USING COLDFUSION 5 STUDIO Use Manual page 241

Table of Contents

Advertisement

Application Object
Example
function Main(){
with (Application){
if (ActiveDocument.Modified){
}
}
}
StatusWarning
Syntax
StatusWarning(const wsMsg: WideString);
Description
Displays a warning message in the status bar. Message appears on a blue background
and displays for at least 5 seconds.
Example
function Main(){
with (Application){
if (ActiveDocument.ReadOnly){
}
}
}
TagCase
Syntax
TagCase(const wsTag: WideString): WideString;
Changes the case of the passed string based on the "Lowercase all inserted tags"
Description
setting in the HTML panel in the Options > Settings dialog box. Does not modify the
case of attribute values.
Example
function Main(){
with (Application){
ActiveDocument.InsertText(TagCase('<a href="http://
}
}
ToolbarDir
Syntax
ToolbarDir: WideString (read-only);
Description
Returns the path where toolbar files are located.
Example
function Main(){
with (Application){
CurrentFolder = ToolbarDir;
}
}
StatusError('Current document is modified');
StatusWarning('Current document is read-only');
www.macromedia.com"'), false);
223

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION STUDIO 5-USING COLDFUSION 5 STUDIO and is the answer not in the manual?

This manual is also suitable for:

Coldfusion studio 5

Table of Contents