Fraud Prevention with Virtual Keyboard
| Category | : Flash | Views | : 19171 | ||
| Version | : 8 | Rating | : | ||
| Type | : Text | Source File | : fraud-prevention-virtual-keyboard.zip | ||
| Result | : See the result | ||||
else {
passTxt.text += "1";
}
}
If the login doesnç¨ have focus than the password has it; so add the text to the password textbox.
loginTxt.onSetFocus = function()
{
_root.loginFocus = true;
}
If the user clicked on the login textbox it gained focus and this event is called.Then loginFocus is set to true.
passTxt.onSetFocus = function()
{
_root.loginFocus = false;
}
Password textbox got focus and login textbox lost it.Set loginFocus to false.
loginErase.onRelease = function()
{
loginTxt.text = "";
}
Set text to nothing if a erase button is pressed.