как можно объединить все кадры и преобразовать их в один символ с именем buket_mc, чтобы применить к нему actionscript:
stop();
buket_mc.stop();
polzunok.bar.addEventListener(MouseEvent.MOUSE_DOWN, moveBar);
addEventListener(MouseEvent.MOUSE_UP, stopBar);
addEventListener(MouseEvent.MOUSE_MOVE, update);
function moveBar(e:MouseEvent):void{
var bounds:Rectangle = new Rectangle(0,0,polzunok.width);
polzunok.bar.startDrag(false, bounds);
}
function stopBar(e:MouseEvent):void{
polzunok.bar.stopDrag();
}
function update(e:MouseEvent):void{
buket_mc.gotoAndStop(int(polzunok.bar.x / polzunok.width * buket_mc.totalFrames));
}