forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfocusOut.lcdoc
More file actions
31 lines (19 loc) · 953 Bytes
/
Copy pathfocusOut.lcdoc
File metadata and controls
31 lines (19 loc) · 953 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
Name: focusOut
Type: message
Syntax: focusOut
Summary: Sent to a <button> or <field> when it becomes inactive (loses <focus>).
Introduced: 1.0
OS: mac,windows,linux,ios,android
Platforms: desktop,server,web,mobile
Example:
on focusOut
-- if you set the textStyle on focusIn, use a handler like this
-- handler to remove the styling when the control loses focus
set the textStyle of the target to empty
end focusOut
Description:
Handle the <focusOut> <message> if you want to perform preparation or do other tasks when a <control> loses the <focus|keyboard focus>.
If the control is an unlocked field or a button whose menuMode is "comboBox", the <closeField> or <exitField> <message> is sent to it instead of the <focusOut> <message>.
References: field (keyword), button (keyword), exitField (message), suspendStack (message), closeField (message), focus (command), message (glossary), control (glossary), focus (glossary)
Tags: ui