forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeleteScrollbar.lcdoc
More file actions
40 lines (26 loc) · 985 Bytes
/
deleteScrollbar.lcdoc
File metadata and controls
40 lines (26 loc) · 985 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
31
32
33
34
35
36
37
38
39
Name: deleteScrollbar
Type: message
Syntax: deleteScrollbar
Summary:
Sent to a <scrollbar> just before it is removed from the <stack>.
Associations: scrollbar
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
on deleteScrollbar -- prevent the deletion by immediately undoing it
beep
send "undo" to this card in 5 milliseconds
end deleteScrollbar
Description:
Handle the <deleteScrollbar> <message> if you want to perform cleanup
before a <scrollbar> is removed from the <stack>.
The actual deletion is not triggered by the <deleteScrollbar> <message>,
so <trap|trapping> the <message> and not allowing it to <pass> does not
prevent the <scrollbar> from being removed.
However, the undo <command> will restore a <scrollbar> after it is
deleted by the user.
References: delete (command), pass (control structure),
command (glossary), message (glossary), trap (glossary),
scrollbar (keyword), stack (object)
Tags: objects