/* VERSION: 1.0 DATE: 1/29/2009 ACTIONSCRIPT VERSION: 3.0 DESCRIPTION: This class works in conjunction with the TweenLiteVars or TweenMaxVars class to grant strict data typing and code hinting (in most code editors) for transformAroundPoint tweens. See the documentation in the TweenLiteVars or TweenMaxVars for more information. USAGE: Instead of TweenMax.to(my_mc, 1, {transformAroundCenter:{scaleX:2, scaleY:1.5, rotation:30}}, onComplete:myFunction}), you could use this utility like: var myVars:TweenMaxVars = new TweenMaxVars(); myVars.transformAroundPoint = new TransformAroundCenterVars(2, 1.5, 30); myVars.onComplete = myFunction; TweenMax.to(my_mc, 1, myVars); NOTES: - This utility is completely optional. If you prefer the shorter synatax in the regular TweenLite/TweenMax class, feel free to use it. The purpose of this utility is simply to enable code hinting and to allow for strict data typing. - You cannot define relative tween values with this utility. AUTHOR: Jack Doyle, jack@greensock.com Copyright 2009, 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. */ package gs.utils.tween { import flash.geom.Point; public class TransformAroundCenterVars extends TransformAroundPointVars { public function TransformAroundCenterVars($scaleX:Number=NaN, $scaleY:Number=NaN, $rotation:Number=NaN, $width:Number=NaN, $height:Number=NaN, $shortRotation:Object=null, $x:Number=NaN, $y:Number=NaN) { super(null, $scaleX, $scaleY, $rotation, $width, $height, $shortRotation, $x, $y); } public static function createFromGeneric($vars:Object):TransformAroundCenterVars { //for parsing values that are passed in as generic Objects, like blurFilter:{blurX:5, blurY:3} (typically via the constructor) if ($vars is TransformAroundCenterVars) { return $vars as TransformAroundCenterVars; } return new TransformAroundCenterVars($vars.scaleX, $vars.scaleY, $vars.rotation, $vars.width, $vars.height, $vars.shortRotation, $vars.x, $vars.y); } } }