Hola, q tal.
Tu error esta en el boton.
Tienes esto:
on (rollOver) {
_root.cuadro.tool.gotoAndStop(2);
startDrag("_root.cuadro.tool", true);
}
on (rollOut) {
_root.cuadro.tool.gotoAndStop(1);
}
Y tienes que poner esto:
on (rollOver) {
tool.gotoAndStop(2);
startDrag("_root.cuadro.tool", true);
}
on (rollOut) {
tool.gotoAndStop(1);
}
Saludos