class SimDrop extends CustomMC { private var g=1; private var v=0; private function onEnterFrame () { v+=g; _y+=v; if (_y>Stage.height) this.removeMovieClip(); if (this.hitTest(_root.avi.opening)) { Tools.playSound("Drip"); _root.avi.incWaterlevel(); this.removeMovieClip (); } } }