well, i'm away from my work for a couple days now, so i can't share a fla with you. But it isn't anything special. I was just "trying" stuff out with the new IDE. I simply put an imput text field on the stage. And i think the code probably went like this....
ActionScript Code:
// name of the text field is testText_txt
// name of text field variable is testText_var
// name of button is butt_btn
this.testText_txt.password = true;
this.butt_btn.onRelease = function(){
trace("password "+ testText_var);
}
and the trace equals what i put into the text field, sans the astericks....
It's in the first frame of the main timeline, as vanilla as you can get. I just had a thought, I can't check it till I get back, but maybe it is because I didn't include astericks in the list of embedded characters? I don't know, but there is the code.