Using input text to move to a frame

Hi I’m very new to all this (forum and flash overall) compared to most but I’ve being trying to make a movie that when text is entered in to an input field depending on it’s value (after a click on a button) the movie goes to a certain frame.

For example if the text entered is = 5 then it goes to frame 52
if no then it goes to frame 2…

Here is the code I’m using which is on a button in frame 1… at the moment no matter what I type in it always goes to frame 52! I’ve named the variable for the input text inputAmount.

on (release) {
if (inputAmount=5) {
gotoAndPlay(52);
} else {
gotoAndPlay(2);
}
}

Any help would be very much appreciated! Sorry if this is a stupid quetion!

Thanks! :love:


on (release) {
	if (iBox == 5) {
		gotoAndPlay(52);
	} else {
		gotoAndPlay(2);
	}
}

where iBox is the variable name of the input box…

and try not to do that mistake again “if (inputAmount[color=red]=[/color]=5)”. = is for asignments

hi thanks for the help… however I still can’t get it to work… no what ever I do (i’m using the code above) it just always gooes to frame 2 even when I type five in the in put box… is this something to do with the box itself???

i guess it has to do with the variable scope.
your iBox should be on the same timeline as the button you put the actions to. Or reffer it properly with absolute or relative coresponding name.
I mean if iBox is in _root you can access the variable from any timeline as _root.iBox

Hope it helps