newStack

Sent to the current card of a new stack right after the stack is created.

# Metadata

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

# Syntax

newStack

# Examples

on newStack -- store a path for later use in a closeStack handler ask file "Where do you want to store the backup?" with \ char 1 to 24 of the short name of this stack && "Backup" set the backupLocation of the target to it end newStack

# Description

Handle the newStack message if you want to create additional objects or do other tasks when a new stack is created.

Normally, the newStack message is handled at a higher level of the message path, since the newly-created stack does not yet have a script unless the templateStack contains one.

The actual creation is not triggered by the newStack message, so trap the message and not allowing it to pass does not prevent the stack from being created.

# Tags

# See

- **property:** script - **message:** deleteStack - **keyword:** templateStack - **object:** stack - **glossary:** object, trap, current card, message, message path - **command:** create stack - **control structure:** pass