class Drop extends CustomMC { private var x,y,r; private var speed = 25; private var v; private var startV; private var g=2.5; private function onLoad () { _x=x; _y=y; _rotation = r-45; v = new Object; v.x=(startV.x+speed)*Math.cos (_rotation*Math.PI/180); v.y=(startV.y+speed)*Math.sin (_rotation*Math.PI/180); } private function onEnterFrame () { v.y+=g; _x+=v.x; _y+=v.y; var angle = Math.atan2 (v.y,v.x); _rotation = angle * 180/Math.PI; if (_y>Stage.height) this.removeMovieClip(); var hands= ["handLeft","handRight"]; for (var i=0; i