If you only have the one field, you can create a regular button that
stores the password in a temporary variable, clears the field, emails
it, then puts the password back into the field. Here's an example:var
mypassword = PasswordField.rawValue;//store the password field value in
a variablePasswordField.rawValue = "";//clear the field and the
resultant
xmlevent.target.submitForm({cURL:"mailto:me@me.com",cSubmitAs:"XML"});//mail
the form with attached xmlPasswordField.rawValue = mypassword;//brin...