forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctionKey.lcdoc
More file actions
33 lines (20 loc) · 821 Bytes
/
Copy pathfunctionKey.lcdoc
File metadata and controls
33 lines (20 loc) · 821 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
Name: functionKey
Type: message
Syntax: functionKey <keyNumber>
Summary: Sent when the user presses a function key.
Introduced: 1.0
OS: mac,windows,linux
Platforms: desktop,server,web
Example:
on functionKey theKey
if theKey is 8 then showPaintTools -- a custom handler
else pass functionKey
end functionKey
Parameters:
keyNumber: The number of the function key.
Description:
Handle the <functionKey> <message> to let the user perform some action with a function key.
The message is sent to the active (focused) control, or to the current card if no control is focused.
Keyboards typically have twelve function keys, so you can use numbers from 1 to 12 to implement custom actions.
References: commandKeyDown (message), keyDown (message), help (message), arrowKey (message), message (glossary)
Tags: ui