textfield.type
hello; I have a textfield which has an initial type of "dynamic"; a button is provided for the user to onPress if the user wishes to edit the textfield:
----------------------------------------------------------------
button.onPress = function()
{ textfield_instance.type = "input";
}
----------------------------------------------------------------
the textfield_instance.type does indeed get changed to "input" however the textfield does not become receptive to the cursor, and thus the textfield_instance is not editable by the user;
the textfield_instance does have selectable=true;
any thoughts on why this does not work?
thanks
Shannon Burnett
|