forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcutKey.lcdoc
More file actions
51 lines (36 loc) · 1.47 KB
/
Copy pathcutKey.lcdoc
File metadata and controls
51 lines (36 loc) · 1.47 KB
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
40
41
42
43
44
45
46
47
48
49
50
Name: cutKey
Type: message
Syntax: cutKey
Summary:
Sent when the user presses the <key combination> equivalent to the Cut
<menu item>.
Associations: card, field
Introduced: 1.0
OS: mac, windows, linux
Platforms: desktop, server
Example:
on cutKey
if word 1 of the focusedObject is "card" then
answer error "Cannot cut a card."
else pass cutKey
end cutKey
Description:
Handle the <cutKey> <message> if you want to change the normal cut
process, or prevent use of the Cut <keyboard equivalent> without
changing the menu.
The LiveCode development environment traps the <cutKey> <message>. This
means that the <cutKey> <message> is not received by a <stack> if it's
running in the <development environment>, To test a <cutKey> <handler>,
choose Development → Suspend Development Tools from the menubar.
<cutKey> <message> is sent when the user presses Command-X (on
<Mac OS|Mac OS systems>), Control-X (on <Windows|Windows systems>),
Shift-Delete (on <Unix|Unix systems>), or the keyboard Cut key.
The message is sent to the active (focused) control, or to the current
card if no control is focused.
References: delete (command), cut (command), menu item (glossary),
key combination (glossary), handler (glossary), Windows (glossary),
development environment (glossary), message (glossary), Mac OS (glossary),
Unix (glossary), keyboard equivalent (glossary), pasteKey (message),
backspaceKey (message), deleteKey (message), undoKey (message),
copyKey (message), stack (object)
Tags: ui