Hi, I would like to make following situation: when movie clip arrives in certain position (_x), between 1390 and 1440, all application goes to the first frame (start). But, if MC arrived in that position and, in the same time, you pressed key UP - application did not go to the start, it just continues to play. I made following code:

onClipEvent (enterFrame) {
if(Key.isDown(Key.RIGHT)) {
_x = Math.max (-2900, _x - 10);
}
if(Key.isDown(Key.LEFT)) {
_x = Math.min (2700, _x + 10);
}
if(_x < 1440)
if(_x > 1390) {
_parent.gotoAndPlay("start");
}
if(Key.isDown(Key.UP))
if(_x < 1440)
if(_x > 1390) {
_parent.gotoAndPlay("start") == false;
}
}

But, it does not work. Application goes to the start in both cases. Does anyone know what`s the problem with that last step in my code (with key UP)? Is there some other solution maybe?