shaking

how do I make a actor shake?
I have an actor that needs to shake for 1 second after its clicked on. not the camera the actor.
thanks.
I have an actor that needs to shake for 1 second after its clicked on. not the camera the actor.
thanks.
Comments
But i think animating it would b the way ( one pic is more to the right , then the next is more to the left etc.)
When Shake = true
….Timer: Every .025 seconds
……..Change Attribute: self.Position.X To: 4*cos( self.Time *1000%360)+240
……..Change Attribute: self.Position.Y To: 1*sin(self.Time*1000%360)+160
RThurman