Hi, I’m supposed to make a native textfield that has a placeholder for the password.
Unfortunately, when I set isSecure, it ends the event. Is this a bug?
Here’s a sample of my code
[code]
local function textfieldListener(event)
if event.phase == “begin” then
print(“begin”);
elseif event.phase == “end” then
end
end
passwordTxtField = native.newTextField(255, 300, 550, 55);
passwordTxtField:addEventListener(“userInput”, textfieldListener);
[/code] [import]uid: 91271 topic_id: 31627 reply_id: 331627[/import]