is there's any way to combine keyboard in actionscript 2.0?
probably but again, i'm not sure what you mean by "control a move" on a movieclip.
you can use the key class to check for key presses.
var lo:Object = {};
lo.onKeyDown = function () {
switch(Key.getCode())[
case Key.LEFT:
// do whatever
break;
case Key.RIGHT:
// do whatever else;
break;
// etc
}
}
Key.addListener(lo);
North America
Europe, Middle East and Africa
Asia Pacific