forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputEndEditing.lcdoc
More file actions
39 lines (27 loc) · 1.05 KB
/
inputEndEditing.lcdoc
File metadata and controls
39 lines (27 loc) · 1.05 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
Name: inputEndEditing
Type: message
Syntax: inputEndEditing
Summary:
Sent when a mobile text input control has lost focus and editing has
ceased.
Introduced: 4.6
OS: ios, android
Platforms: mobile
Example:
on inputEndEditing -- enable the next button while editing is finished
enable button "next"
end inputEndEditing
Description:
The <inputEndEditing> message is sent when a mobile text input control
has lost focus and editing has ceased.
Handle the <inputEndEditing> message if you want to move LiveCode
controls, make changes to the interface or perform an action when the
user stops editing text in an iosTextInput, iosMultiline,
androidTextInput or androidMultiline control.
The <inputEndEditing> message is sent to the object containing the
script that created the text input control.
References: mobileControlCreate (command), mobileControlDelete (command),
mobileControlSet (command), mobileControlGet (function),
mobileControlTarget (function), mobileControls (function),
inputReturnKey (message), inputTextChanged (message),
inputBeginEditing (message)