hi there

i have a clip+invisable button, on which i have placed a script, so when there is a mouseover, the clip starts playing, on a mouse out, the clips start playing backwards.

on (release/mouseout/xx) {
_root.onEnterFrame = function() {
_root.prevFrame();
if (_root._currentframe == 1) {
delete _root.onEnterFrame;
}
};
}


this all works well, as long as you do it very very slowly. (the clip that is being played and reversed is about 100 frames.... (build up of a flower, shapes not motion tween)

but if you do a fast mouse over, the clip stops, goes back to frame one, without playing again...
(first and last frames have a stop)

does anybody have a good solution....?
regards