The Delete Object Record command deletes a specified object from the database.
Delete Object Record*
*
of type object_type
Result: Boolean (always returns true)
Example: Delete a customer from the database.
tell application "Virtual Ticket 8.0"
if (exists object of type "Customer" with id "ACME01") then
Delete Object Record of type "Customer" with id "ACME01"
end if
end tell