codigo BOTON1:(añadir startDrag de pages)
on (press) {
pages._height = pages._height+300;
pages._width = pages._width+300;
}
Codigo BOTON2:(añadir el stopDrag de pages)
on (press) {
pages._xscale = 100;
pages._yscale = 100;
}
Codigo en mc pages:(Ahora siempre dragea)
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
startDrag (this);
}
}
onClipEvent (mouseUp) {
stopDrag ();
}
Supongo que no sera dificil, pero es que no se en que fallo para añadir las funciones de start y stopDrag del mc pages a los botones.
Gracias por adelantado
