Hello,
I would like to know if there is a command to set the initial value of password in ask password command?
like -- set password to "mypassword" ? but this one is not correct.
ask password clear "Please type your password:" titled "Edit password"
Thanks in advance.
How to set the initial value of password in ask password?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: How to set the initial value of password in ask password
This will do what you want.
Also be aware that the value will be encrypted. If you just need a cleartext value use the keyword clear, otherwise see the example in the comments at the bottom of the dictionary entry for more info.
Code: Select all
ask password "Enter the password" with "whateverinitialvalue"
epub wrote:Hello,
I would like to know if there is a command to set the initial value of password in ask password command?
like -- set password to "mypassword" ? but this one is not correct.
ask password clear "Please type your password:" titled "Edit password"
Thanks in advance.