Hi all I am currently using FLEX version 3.0
It just take a long time to change the Password character currently if i am enabling the displayAsPassword property of TextInput it gives ‘*’ as a password character and I want to change that to ‘#’ so is there any possible way? If possible please tell me…
Thanks in advance,
It’s not possible to change the password character for a textfield, but there are 3 ways to fake it.
Create a custom PasswordField class which extends TextField and upon text input changes all characters to “#”
If you have a font editor create your own custom font in which the * symbol is replaced by # and use that in the textfield instead.
Find a font on the internet which does the same as 2. Good luck with that BTW.