Mustafa55 Posted December 22, 2011 Posted December 22, 2011 When I write in find mode, Whatever I write, I want all caharacters to be shown in password caharacters (******). How can I do this ?
Lee Smith Posted December 23, 2011 Posted December 23, 2011 What are you trying to accomplish other than hiding the text.
Mustafa55 Posted December 23, 2011 Author Posted December 23, 2011 I want to use change password script by using 2 fields in find mode, so I want the caharacters to be shown as passwords characters (***).if it is possible or not.?
LaRetta Posted December 23, 2011 Posted December 23, 2011 "I want to use change password script by using 2 fields in find mode" Hi Mustafa55, To accept User input, you need to use a field. It should be global fields in this case and you can either 1) install a password font on your system and set the global fields to that font or 2) use Custom Dialog to ask for user input of their password and Custom Dialog provides ability to check 'use password font'. However, storing User passwords even temporarily into fields is unsafe practice. I encourage you to instead use the 'Change Password' script step, utilizing Security with privileges. :)
imoree Posted December 23, 2011 Posted December 23, 2011 Let ( [ pw = passwordFIELD; ast = "****************************************************************" ] ; Left ( ast ; Length ( passwordFIELD) ) ) //passwordFIELD = your field user is entering in text //otherfield or conditional using this calculation
Mustafa55 Posted December 23, 2011 Author Posted December 23, 2011 Let ( [ pw = passwordFIELD; ast = "****************************************************************" ] ; Left ( ast ; Length ( passwordFIELD) ) ) //passwordFIELD = your field user is entering in text //otherfield or conditional using this calculation thank you so much. This is what I want. I have just tried this formula and ıt works.I thank all of you for your comments.
Recommended Posts
This topic is 4720 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now