I’ve been wrecking my brain for over 24 hours and maybe i just need a second set of eyes, but I’m having a problem apply this Tween class to a movie inside of a movie on the main timeline. The code is below, any help is greatly appreciated.
_root.board.pieceAbout.onRollOver = function() {
var tw:Tween = new Tween(this,"_xscale", Strong.easeOut, this._xscale, 300, .5, true);
var tw2:Tween = new Tween(this,"_yscale", Strong.easeOut, this._yscale, 300, .5, true);
}