Hi
How do I backspace a text string. If this was a login
screen, I should be able to backspace one character if I made an error,
and continue my login. I'm not sure how to accomplish this. Please help.
Thanks,
The sample code is obviously wrong, but may help explain
var log:String = "LOGIN_777";
trace(log);
b.addEventListener(MouseEvent.CLICK, strangThang);
function strangThang(e:MouseEvent){
/*
I want it to read 'LOGIN_77' and keep decreasing
after one click, it outputs 'LOGIN_7770'
*/
log += log.charAt.length-1;
}