Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
Now go back onto the main stage. You should have you guy in the center. Select him and hit F9 to open the actions pannel of your character MC. Now put the following code into the pannel:
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
if (_currentframe != 6) {
gotoAndStop(6);
}
} else if (Key.isDown(Key.RIGHT)) {
if (_currentframe != 8) {
gotoAndStop(8);
}
} else {
if (_currentframe == 6) {
gotoAndStop(5);
}
if (_currentframe == 8) {
gotoAndStop(7);
}
}
if (Key.isDown(Key.UP)) {
if (_currentframe != 2) {
gotoAndStop(2);
}
} else if (Key.isDown(Key.DOWN)) {
if (_currentframe != 4) {
gotoAndStop(4);
}
} else {
if (_currentframe == 2) {
gotoAndStop(1);
}
if (_currentframe == 4) {
gotoAndStop(3);
}
}
}