ScriptObjectDoesNotExist

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Object> does not exist
Associationscom.livecode.engine
Summary

Tests the existence of a script object.

Parameters
NameTypeDescription
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
NameTypeDescription
The result

True if the object Object exists, and false otherwise.

RelatedStatement: 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

Tagsengine,script engine