Shaking

Hi everyone
I wish to make a shake effect; namely, I wanna get the picture shaked a bit each 10th second.

Also, I’d like to do the shaking with a button when placing a mouse over it, and then return to normal state when taking a mouse off the button.

Can anyone help me?

Just select your graphic press F8 chose MovieClip and then double click on your movie clip select the 2nd frame right click on it select the option insert keyframe and on the new frame move your graphic to a different plase but close to where it was and repeat the steps 2or 3 more times and inside your MC in the first frame in the actions pannel type stop();
and on the last frame type
gotoAndPlay(1);

now on the main frame in your Movie clip
Type

on(rollOver){
this.gotoAndPlay(2);
}
on(rollOut){
this.gotoAndPlay(1);
}

viola :slight_smile: