![MACROMEDIA COLDFUSION STUDIO 4.5-USING COLDFUSION... Use Manual Download Page 194](http://html1.mh-extra.com/html/macromedia/coldfusion-studio-4-5-using-coldfusion/coldfusion-studio-4-5-using-coldfusion_use-manual_3288175194.webp)
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
Wait
to enable scripts to execute loops
yet still allow access to the UI. Without the call to
Wait
in the loop, the application will
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) {
app.Wait(100);
}
Here’s the same code in VBScript:
set app = Application
while app.CurrentView 1
app.Wait (100)
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.
Summary of Contents for COLDFUSION STUDIO 4.5-USING COLDFUSION...
Page 1: ...Allaire Corporation Using ColdFusion Studio ColdFusion Studio 4 5 for Windows 95 98 NT4 2000...
Page 16: ...xvi Contacting Allaire...
Page 90: ...82...
Page 130: ...122...
Page 133: ...141 Two VTML tags CAT and E let you customize the content of these dialog boxes...
Page 182: ...190...