HydroTween.goの第二引数:Objectへ複数のプロパティを指定することで同時にtweenさせることができる。
サンプルを作り試してみた。
[swfobj src=”http://www.inazumatv.com/contents/wp-content/uploads/2008/08/hydro-go-4-1.swf” alt=”HydroTween.go Sample, do tween to several properties.” width=”550″ height=”400″ id=”hydro-go-4-1″ name=”hydro_go_4_1″ class=”flash-sample-container” allowfullscreen=”false” required_player_version=”9.0.115″]
code
import com.hydrotik.go.*; import fl.motion.easing.*; HydroTween.VERBOSE = false; var sprite:Sprite = new Sprite(); var graphic:Graphics = sprite.graphics; graphic.beginFill(0x00FF00); graphic.drawRect(-30,-30,60,60); graphic.endFill(); addChild(sprite); sprite.x = stage.stageWidth/2 sprite.y = stage.stageHeight/2 HydroTween.go(sprite,{width:550,color:0x0000FF,scaleY:0.1},3,0,Bounce.easeOut); |