Simple Actionscript Question

Hi, basically ive got a movie clip which is wider than the flash movie itself but i got two buttons on each end. Basically i want the first button to move the movie clip to the left 20pixels and the button on the right to move the movie clip to the right 20pixels.

I’d imagine there is a bit of actionscript that i can attach to each button to allow this to happen.

Thanks in advance, Chris

put this as on the left button:

on(release){
mc._x -= 20;
}

as for the right button:

on(release){
mc._x -= 20;
}

that’s all… font forget to name your movieclip instance name…mc