Meridian
July 24th, 2003, 11:13 PM
Ok, I got myself a nifty listener that activates a mc when the focus is set on a textfield.
_root.mail.n.onSetFocus = function() {
if (Key.addListener(_root.mail.n) == true) {
_root.mail.fader.gotoAndPlay(2);
}
};
Works great.
Question is how do I make it play the next part of the mc when the focus of the text field changes from itself to another text field?
_root.mail.n.onSetFocus = function() {
if (Key.addListener(_root.mail.n) == true) {
_root.mail.fader.gotoAndPlay(2);
}
};
Works great.
Question is how do I make it play the next part of the mc when the focus of the text field changes from itself to another text field?