※現在、「wonderfl build flash online」求人コンテンツ制作に関してのアンケートを実施中です!みなさまのお力添えを頂いて、続々とアンケート結果が集まっていますが、まだまだ募集しております。ご協力のほど、どうぞよろしくお願いいたします!

wonderfl運営事務局
→アンケートページ(※ログインしてからお答えいただけるようになっています。)

 notice: Flash editor updated! Join the development! Thanks to MiniBuilder


FORKED
  1. // forked from soundkitchen's sample 1
  2. package
  3. {
  4.     import flash.display.Sprite;
  5.     import caurina.transitions.Tweener;
  6.     [SWF(width=465, height=465, frameRate=30, backgroundColor=0xffffff)]
  7.     public class Sample extends Sprite
  8.     {
  9.         public function Sample()
  10.         {
  11.             //  オブジェクトを作成
  12.             var ball:Sprite = new Sprite();
  13.             //  座標を指定
  14.             ball.x = 100;
  15.             ball.y = 100;
  16.             //  丸を描画
  17.             ball.graphics.beginFill(0x000000);
  18.             ball.graphics.drawCircle(0040);
  19.             ball.graphics.endFill();
  20.             //  ステージに配置
  21.             addChild(ball);
  22.             //  トゥイーンさせる
  23.             Tweener.addTween(ball, {
  24.                 x: 300,
  25.                 time: 2,
  26.                 transition: "easeInOutSine"
  27.             });
  28.         }
  29.     }
  30. }
noswf
  1. package
  2. {
  3.     import flash.display.Sprite;
  4.     import caurina.transitions.Tweener;
  5.     [SWF(width=465, height=465, frameRate=30, backgroundColor=0xffffff)]
  6.     public class Sample extends Sprite
  7.     {
  8.         public function Sample()
  9.         {
  10.             //  オブジェクトを作成
  11.             var ball:Sprite = new Sprite();
  12.             //  座標を指定
  13.             ball.x = 100;
  14.             ball.y = 100;
  15.             //  丸を描画
  16.             ball.graphics.beginFill(0x000000);
  17.             ball.graphics.drawCircle(0040);
  18.             ball.graphics.endFill();
  19.             //  ステージに配置
  20.             addChild(ball);
  21.             //  トゥイーンさせる
  22.             Tweener.addTween(ball, {
  23.                 x: 300,
  24.                 scaleX: 0,
  25.                 scaleY: 0,
  26.                 time: 2,
  27.                 transition: "easeInOutSine"
  28.             });
  29.         }
  30.     }
  31. }
noswf
  1. // forked from soundkitchen's sample 1
  2. package
  3. {
  4.     import flash.display.Sprite;
  5.     import caurina.transitions.Tweener;
  6.     [SWF(width=465, height=465, frameRate=30, backgroundColor=0xffffff)]
  7.     public class Sample extends Sprite
  8.     {
  9.         public function Sample()
  10.         {
  11.             //  オブジェクトを作成
  12.             var ball:Sprite = new Sprite();
  13.             //  座標を指定
  14.             ball.x = 100;
  15.             ball.y = 100;
  16.             //  丸を描画
  17.             ball.graphics.beginFill(0x00FF00);
  18.             ball.graphics.drawCircle(00100);
  19.             ball.graphics.endFill();
  20.             //  ステージに配置
  21.             addChild(ball);
  22.             //  トゥイーンさせる
  23.             Tweener.addTween(ball, {
  24.                 x: -10,
  25.                 time: 3.5,
  26.                 transition: "easeInOutSine"
  27.             });
  28.         }
  29.     }
  30. }
noswf
  1. package{
  2. import flash.text.TextFormat;
  3. import flash.text.TextField;
  4. import flash.text.TextFieldType;
  5. import flash.display.Sprite;
  6. import flash.text.TextFieldAutoSize;
  7. public class square extends Sprite{
  8.     public function square(){
  9.         var fld:TextField = new TextField();
  10.         fld.type = TextFieldType.INPUT;
  11.         
  12.         var tf:TextFormat = new TextFormat;
  13.         tf.font = "_typewriter";
  14.         tf.size =18;
  15.             
  16.         fld.defaultTextFormat = tf;
  17.         
  18.         fld.x =30;
  19.         fld.y =50;
  20.         fld.width =300;
  21.         fld.height = 30;
  22.         fld.border = true;
  23.         fld.text = "imput here.";
  24.         
  25.         //fld.autoSize = TextFieldAutoSize.LEFT;
  26.         addChild(fld);
  27.         fld.selectable= false;
  28.   }//square
  29. }//class
  30. }//package
noswf
  1. // forked from soundkitchen's sample 1
  2. package
  3. {
  4.     import flash.display.Sprite;
  5.     import caurina.transitions.Tweener;
  6.     [SWF(width=465, height=465, frameRate=30, backgroundColor=0xffffff)]
  7.     public class Sample extends Sprite
  8.     {
  9.         public function Sample()
  10.         {
  11.             //  オブジェクトを作成
  12.             var ball:Sprite = new Sprite();
  13.             //  座標を指定
  14.             ball.x = 100;
  15.             ball.y = 100;
  16.             //  丸を描画
  17.             ball.graphics.beginFill(0x000000);
  18.             ball.graphics.drawCircle(0040);
  19.             ball.graphics.endFill();
  20.             //  ステージに配置
  21.             addChild(ball);
  22.             //  トゥイーンさせる
  23.             Tweener.addTween(ball, {
  24.                 x: 300,
  25.                 time: 2,
  26.                 transition: "easeInOutSine"
  27.             });
  28.         }
  29.     }
  30. }
noswf
Get Adobe Flash Player