ScriptObjectDoesNotExist |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Object> does not exist
|
Associations | com.livecode.engine |
Summary | Tests the existence of a script object.
|
Parameters | Name | Type | Description |
---|
Object | | An expression that evaluates to a ScriptObject.
|
|
Example | variable tObject as ScriptObject
resolve script object "card 5 of this stack"
put the result into tObject
if tObject does not exist then
log "No such card"
end if
|
Values | Name | Type | Description |
---|
The result | | True if the object Object exists, and false otherwise.
|
|
Related | Statement: ResolveScriptObject
|
Description | Use to test the non-existence or otherwise of a script object, for example after attempting to resolve the object from a string using resolve script object
|
Tags | engine,script engine |