deleteImage

Sent to an image just before it is removed from the stack.

# Metadata

Platforms: desktop, server, mobile OS: mac, windows, linux, ios, android Introduced: 1.0 Security:

# Syntax

deleteImage

# Examples

on deleteImage export the target to file "Saved" pass deleteImage end deleteImage

# Description

Handle the deleteImage message if you want to perform cleanup before an image is removed from the stack.

The actual deletion is not triggered by the deleteImage message, so trap the message and not allowing it to pass does not prevent the image from being removed.

However, the undo command will restore an image after it is deleted by the user. For example, the following handler, placed in a card or stack script, effectively prevents an image from being deleted by the user:

on deleteImage beep send "undo" to this card in 5 milliseconds end deleteImage

# Tags

# See

- **keyword:** card, image - **property:** script - **command:** delete - **object:** stack - **glossary:** handler, trap, message, command - **control structure:** pass