Does autoCorrectionType work?
Posted: Tue Jul 01, 2014 7:06 pm
No matter what I try, I can't turn off auto correct in an Android native input control (either text or multiline). This is true for ver. 6.6.2 and 6.7 dp4. 7.0 dp6 won't even display the control. I've tried setting autoCorrectionType to "no" as the dictionary suggests as well as false. Has anyone else gotten it to turn off?
Here is simplified sample code that I put into a text field.
Here is simplified sample code that I put into a text field.
Code: Select all
on mouseUp
mobileControlCreate "multiline", "displayInput"
mobileControlSet "displayInput", "rect", "0,0,400,400"
mobileControlSet "displayInput", "vScroll", "0"
mobileControlSet "displayInput", "visible", true
mobileControlSet "displayInput", "autoCorrectionType", "no"
end mouseUp