:thumbsdow :thumbsdow :thumbsdow I need a code that when i input a word (EX.Cheese) in a input text box, itll go to a new frame :rolleyes: :rolleyes:
Printable View
:thumbsdow :thumbsdow :thumbsdow I need a code that when i input a word (EX.Cheese) in a input text box, itll go to a new frame :rolleyes: :rolleyes:
Don't we all love those emoticons!
http://board.flashkit.com/board/http://board.flashkit.com/board/http://board.flashkit.com/board/http://board.flashkit.com/board/
First thing you need to do is assigning a var-name to your input field. This code should do the rest:code:
onEnterFrame = function () {
if (var-name == "Cheese") {
gotoAndStop("framelabel");
}
};
aut.