MACROMEDIA COLDFUSION STUDIO 4.5-USING COLDFUSION STUDIO Use Manual page 194

For windows 95/98/nt4/2000
Table of Contents

Advertisement

202
StatusError
procedure StatusError(const wsMsg: WideString)
Displays an error message in the status bar - message will appear on a red background
and display for at least 5 seconds.
StatusWarning
procedure StatusWarning(const wsMsg: WideString)
Displays a warning message in the status bar - message will appear on a blue
background and display for at least 5 seconds.
TagCase
function TagCase(const wsTag: WideString): WideString
Changes the case of the passed string based on the "Lowercase all inserted tags"
setting in the HTML panel of Options > Settings dialog box. Does not modify the case
of attribute values.
Wait
procedure Wait(nMilliseconds: Integer)
Pauses for given number of milliseconds. Use
yet still allow access to the UI. Without the call to
appear locked and the user will be unable to change views. The JScript sample below
waits for the user to return to edit source view:
var app = Application;
while (app.CurrentView != 1) {
}
Here's the same code in VBScript:
set app = Application
while app.CurrentView
wend
Project properties
ActiveProjectFile (read-only string)
Filename of the active project or empty string if no project is open.
Project methods
AddFileToProject
function AddFileToProject(const wsFilename: WideString): WordBool
Adds the passed file to the active project. Note that the file must be contained under
the main project folder or a subfolder of the main project.
app.Wait(100);
app.Wait (100)
Wait
1
to enable scripts to execute loops
in the loop, the application will
Wait

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion studio 4.5

Table of Contents