Hi folks,
Im trying to setup an Artificial intellegence sorta thing in Flash and I want to know if it possible to navigate by way of what is typed in a text input field. I tried something like this:
if (textinput==“hi”){
gotoAndStop(25);
}
I tried putting an else after it but it acted as if the first condition isnt met. I need to be able to do this based on key strokes. The user can’t click click a button or anything.
works for me, but instead of an else, I put a frame after it that said “gotoandplay(1)” so that once the condition was met, I said goto 3 instead of 25.