/** * VERSION: 1.13 * DATE: 10/2/2009 * ACTIONSCRIPT VERSION: 3.0 * UPDATES AND DOCUMENTATION AT: http://www.TweenMax.com **/ package com.greensock.plugins { import com.greensock.*; /** * ScalePlugin combines scaleX and scaleY into one "scale" property.

* * USAGE:

* * import com.greensock.TweenLite;
* import com.greensock.plugins.TweenPlugin;
* import com.greensock.plugins.ScalePlugin;
* TweenPlugin.activate([ScalePlugin]); //activation is permanent in the SWF, so this line only needs to be run once.

* * TweenLite.to(mc, 1, {scale:2}); //tweens horizontal and vertical scale simultaneously

*
* * Copyright 2011, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership. * * @author Jack Doyle, jack@greensock.com */ public class ScalePlugin extends TweenPlugin { /** @private **/ public static const API:Number = 1.0; /** @private **/ protected var _target:Object; /** @private **/ protected var _startX:Number; /** @private **/ protected var _changeX:Number; /** @private **/ protected var _startY:Number; /** @private **/ protected var _changeY:Number; /** @private **/ public function ScalePlugin() { super(); this.propName = "scale"; this.overwriteProps = ["scaleX", "scaleY", "width", "height"]; } /** @private **/ override public function onInitTween(target:Object, value:*, tween:TweenLite):Boolean { if (!target.hasOwnProperty("scaleX")) { return false; } _target = target; _startX = _target.scaleX; _startY = _target.scaleY; if (typeof(value) == "number") { _changeX = value - _startX; _changeY = value - _startY; } else { _changeX = _changeY = Number(value); } return true; } /** @private **/ override public function killProps(lookup:Object):void { var i:int = this.overwriteProps.length; while (i--) { if (this.overwriteProps[i] in lookup) { //if any of the properties are found in the lookup, this whole plugin instance should be essentially deactivated. To do that, we must empty the overwriteProps Array. this.overwriteProps = []; return; } } } /** @private **/ override public function set changeFactor(n:Number):void { _target.scaleX = _startX + (n * _changeX); _target.scaleY = _startY + (n * _changeY); } } }