The Exists Object command checks if an object exists in the Virtual Ticket database.
of type object_type
with id object_id
Example: Determine whether a particular object exists and delete it.
tell application "Virtual Ticket 8.0"
if (Exists Object of type "Job" with id 100) then
Delete Object Record of type "Job" with id 100
end if