forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputTextChanged.lcdoc
More file actions
37 lines (25 loc) · 1 KB
/
Copy pathinputTextChanged.lcdoc
File metadata and controls
37 lines (25 loc) · 1 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
Name: inputTextChanged
Type: message
Syntax: inputTextChanged
Summary:
Sent when the content of a mobile text input control has changed.
Introduced: 4.6
OS: ios, android
Platforms: mobile
Example:
on inputTextChanged -- enable the save button when a change is made
enable button "save"
end inputTextChanged
Description:
The inputTextChanged message is sent when the content of a mobile text
input control has changed.
Handle the <inputTextChanged> message if you want to make changes to the
interface or perform an action when the content of an iosTextInput,
iosMultiline, androidTextInput or androidMultiline control changes.
The <inputTextChanged> 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),
inputEndEditing (message), inputReturnKey (message),
inputBeginEditing (message)