Livecode Wiki
Advertisement

A Message sent when a mobile text input control has lost focus and editing has ceased. If there is a message handler by the same name in the message path, then it will be executed.

Message[]

Syntax:

inputEndEditing

The inputEndEditing message is sent when a mobile text input control has lost focus and editing has ceased.

The inputEndEditing message is sent to the object containing the script that created the text input control.

Message handler[]

Examples:

on inputEndEditing            -- enable the next button while editing is finished
   enable button "next"
end inputEndEditing

Use the inputEndEditing Message handler 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.

See also: mobileControlSet, mobileControlGet, mobileControlTarget, mobileControls, inputReturnKey, inputTextChanged, inputBeginEditing.

Advertisement