If a password is already entered in a textbox by someone which appears in the form of dots or stars,3 ways of hacking that password
1)using object spy, you can check the "value" property
2)equivalently, msgbox TextBoxObject.getroproperty("value")
3)click record , go to that password textbox, give 2 spaces in the end and 2 back spaces(to remove your characters).Now a setsecure statement would be generated in your script
eg:TextBoxObject.setsecure "4e93d473e107b51e592f945561gb0263bsa70f17013dcde96ef7"
Now, if you have another textbox on the page(eg:username)
write this line in next line of the script
WebEdit("username").setsecure "4f276558710344aa1ef240e0e53a"
Now run it and see that the password appears on the username textbox
1)using object spy, you can check the "value" property
2)equivalently, msgbox TextBoxObject.getroproperty("value")
3)click record , go to that password textbox, give 2 spaces in the end and 2 back spaces(to remove your characters).Now a setsecure statement would be generated in your script
eg:TextBoxObject.setsecure "4e93d473e107b51e592f945561gb0263bsa70f17013dcde96ef7"
Now, if you have another textbox on the page(eg:username)
write this line in next line of the script
WebEdit("username").setsecure "4f276558710344aa1ef240e0e53a"
Now run it and see that the password appears on the username textbox