December 22, 201114 yr When I write in find mode, Whatever I write, I want all caharacters to be shown in password caharacters (******). How can I do this ?
December 23, 201114 yr Author 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.?
December 23, 201114 yr "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. :)
December 23, 201114 yr Let ( [ pw = passwordFIELD; ast = "****************************************************************" ] ; Left ( ast ; Length ( passwordFIELD) ) ) //passwordFIELD = your field user is entering in text //otherfield or conditional using this calculation
December 23, 201114 yr Author 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.
Create an account or sign in to comment