Forked from: soundkitchen's sample 1 diff:2 sample 2 soundkitchen.. forked:6favorite:0lines:26license : MIT License modified : 2009-11-03 22:00:10 Embed Tweet package { import flash.display.Sprite; import caurina.transitions.Tweener; [SWF(width=465, height=465, frameRate=30, backgroundColor=0xffffff)] public class Sample extends Sprite { public function Sample() { // オブジェクトを作成 var ball:Sprite = new Sprite(); // 座標を指定 ball.x = 100; ball.y = 100; // 丸を描画 ball.graphics.beginFill(0x000000); ball.graphics.drawCircle(0, 0, 40); ball.graphics.endFill(); // ステージに配置 addChild(ball); // トゥイーンさせる Tweener.addTween(ball, { x: 300, scaleX: 0, scaleY: 0, time: 2, transition: "easeInOutSine" }); } } } Code Fullscreen Preview Fullscreen Wonderfl本 scaleY scaleX Tweener.addTween time addChild Sprite sort new page view favorite forked pv80 forked from: sample 2 ir_77 forked:0 favorite:0lines:33 (diff:11) pv0 forked from: sample 2 ir_77 forked:0 favorite:0lines:26 (diff:1) pv78 forked from: sample 2 hacker_xaotp5zq forked:0 favorite:0lines:26 (diff:3) pv83 forked from: sample 2 aass forked:0 favorite:0lines:26 (diff:1) pv104 forked from: sample 2 touchi forked:0 favorite:0lines:26 (diff:2) pv820 sample 3 soundkitchen forked:11 favorite:0lines:38 (diff:15) tag: Wonderfl本