This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathcopyKey.lcdoc
More file actions
49 lines (34 loc) · 1.32 KB
/
copyKey.lcdoc
File metadata and controls
49 lines (34 loc) · 1.32 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
Name: copyKey
Type: message
Syntax: copyKey
Summary:
Sent when the user presses the <key combination> equivalent to the Copy
<menu item>.
Associations: card, field
Introduced: 1.0
OS: mac, windows, linux
Platforms: desktop, server
Example:
on copyKey
if the selection is empty then beep -- nothing to copy
pass copyKey
end copyKey
Description:
Handle the <copyKey> <message> if you want to change the normal copying
process, or prevent use of the Copy <key combination> without changing
the menu.
The LiveCode development environment traps the <copyKey> <message>,
unless "Suspend LiveCode UI" is turned on in the Development menu. This
means that the <copyKey> <message> is not received by a <stack> if it's
running in the <development environment>.
The <copyKey> <message> is sent when the user presses Command-C (on
<Mac OS|Mac OS systems>), Control-C (on <Windows|Windows systems>),
Control-Insert (on <Unix|Unix systems>), or the keyboard Copy key.
The message is sent to the active (focused) control, or to the current
card if no control is focused.
References: copy (command), menu item (glossary),
key combination (glossary), Windows (glossary),
development environment (glossary), message (glossary), Mac OS (glossary),
Unix (glossary), pasteKey (message), cutKey (message), undoKey (message),
stack (object)
Tags: ui