Skip to main content

ScriptObjectDoesNotExist

Type

operator

Summary

Tests the existence of a script object.

Syntax

<Object> does not exist

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

Parameters

NameTypeDescription

Object

An expression that evaluates to a ScriptObject.

Examples

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

statement: ResolveScriptObject

Thank you for your feedback!

Was this page helpful?