in root
function scale(who, scale){
eval(who)._xscale+=scale
eval(who)._yscale+=scale
}
in the buttons
on(mouseOver){
_root.scale(this._name, 20) //120%
}
on(rollOut){
root.scale(this._name, -20) //returns to 100%
}
This is very basic, could be much better, but take it at starting point
Good luck
Jorge




Reply With Quote