forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputBeginEditing.lcdoc
More file actions
39 lines (27 loc) · 1.07 KB
/
Copy pathinputBeginEditing.lcdoc
File metadata and controls
39 lines (27 loc) · 1.07 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: inputBeginEditing
Type: message
Syntax: inputBeginEditing
Summary:
Sent when a mobile text input control has become focused and editing has
commenced.
Introduced: 4.6
OS: ios, android
Platforms: mobile
Example:
on inputBeginEditing -- disable the next button while editing
disable button "next"
end inputBeginEditing
Description:
The <inputBeginEditing> message is sent when an mobile text input
control has become focused and editing has commenced.
Handle the <inputBeginEditing> message if you want to move LiveCode
controls, make changes to the interface or perform an action when the
user starts editing text in an iosTextInput, iosMultiline,
androidTextInput or androidMultiline control.
The <inputBeginEditing> 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),
inputEndEditing (message)