forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeleteCard.lcdoc
More file actions
30 lines (18 loc) · 871 Bytes
/
Copy pathdeleteCard.lcdoc
File metadata and controls
30 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Name: deleteCard
Type: message
Syntax: deleteCard
Summary: Sent to a <card> just before it is removed from the <stack>.
Associations: card
Introduced: 1.0
OS: mac,windows,linux,ios,android
Platforms: desktop,server,web,mobile
Example:
on deleteCard -- update a list of cards to reflect the deletion
send "updateList" to this stack in 10 ticks -- after card is deleted
pass deleteCard
end deleteCard
Description:
Handle the <deleteCard> <message> if you want to perform cleanup before a <card> is removed from the <stack>.
The actual deletion is not triggered by the <deleteCard> <message>, so <trap|trapping> the <message> and not allowing it to <pass> does not prevent the <card> from being removed.
References: cantDelete (property), card (keyword), delete (command), stack (object), message (glossary), trap (glossary), pass (control_st)
Tags: objects