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


forked from : nitoyon's Hello World!!! [diff(32)]

embed

FAVORITE BY
:
txt particals
:
FORKED
  1. // forked from hisasann's forked from: Hello World!!!
  2. package{
  3.     import flash.display.*;
  4.     import flash.text.*;
  5.     import flash.filters.*;
  6.     import flash.geom.*;
  7.     import caurina.transitions.Tweener;
  8.     [SWF(backgroundColor="0x000000")]
  9.     public class HelloWorld extends Sprite{
  10.         private var bd:BitmapData;
  11.         private var baseColor:uint = 0xFFFFFF;
  12.         public function HelloWorld():void{
  13.             var tf:TextField = new TextField();
  14.             tf.textColor = 0x000000;
  15.             tf.htmlText = "<font face='Times New Roman' size='12'>Caramel mama</font>";
  16.             tf.autoSize = "left";
  17.             bd = new BitmapData(tf.width, tf.height, false, baseColor);
  18.             bd.draw(tf);
  19.             for(var i:int = 0; i < tf.textWidth; i++){
  20.                 for(var j:int = 0; j < tf.textHeight; j++){
  21.                     if (bd.getPixel(i, j) == baseColor)
  22.                         continue;
  23.                     Tweener.addTween(
  24.                         randomize(addChild(new Circle(Math.random() * 0xFFFFFF))), 
  25.                         {
  26.                             x: i * 10,
  27.                             y: j * 10,
  28.                             alpha: 1,
  29.                             delay: (i + j) * .2 * Math.random(),
  30.                             time: 1,
  31.                             transition: "easeOutCirc"
  32.                         }
  33.                     );
  34.                 }
  35.             }
  36.         }
  37.         
  38.         private function randomize(d:DisplayObject):DisplayObject{
  39.             d.x = 500 * Math.random();
  40.             d.y = 500 * Math.random();
  41.             d.alpha = 0;
  42.             return d;
  43.         }
  44.     }
  45. }
  46. import flash.display.*;
  47. import flash.filters.*;
  48. import flash.text.*;
  49. class Circle extends Shape{
  50.     public function Circle(color:uint):void{
  51.         graphics.beginFill(color);
  52.         graphics.drawCircle(002);
  53.         graphics.endFill();
  54.         blendMode=BlendMode.ADD;
  55.         filters=[new BlurFilter(111)];
  56.     }
  57. }
noswf
  1. // forked from hisasann's forked from: Hello World!!!
  2. package{
  3.     import flash.display.*;
  4.     import flash.text.*;
  5.     import flash.filters.*;
  6.     import flash.geom.*;
  7.     import caurina.transitions.Tweener;
  8.     [SWF(backgroundColor="0x000000")]
  9.     public class HelloWorld extends Sprite{
  10.         private var bd:BitmapData;
  11.         private var baseColor:uint = 0xFFFFFF;
  12.         public function HelloWorld():void{
  13.             var tf:TextField = new TextField();
  14.             tf.textColor = 0x000000;
  15.             tf.htmlText = "<font face='Times New Roman' size='14'>REFLEXION</font>";
  16.             tf.autoSize = "left";
  17.             bd = new BitmapData(tf.width, tf.height, false, baseColor);
  18.             bd.draw(tf);
  19.             for(var i:int = 0; i < tf.textWidth; i++){
  20.                 for(var j:int = 0; j < tf.textHeight; j++){
  21.                     if (bd.getPixel(i, j) == baseColor)
  22.                         continue;
  23.                     Tweener.addTween(
  24.                         randomize(addChild(new Circle(Math.random() * 0xFFFFFF))), 
  25.                         {
  26.                             x: i * 10,
  27.                             y: j * 10,
  28.                             alpha: 1,
  29.                             delay: (i + j) * .2 * Math.random(),
  30.                             time: 1,
  31.                             transition: "easeOutCirc"
  32.                         }
  33.                     );
  34.                 }
  35.             }
  36.         }
  37.         
  38.         private function randomize(d:DisplayObject):DisplayObject{
  39.             d.x = 500 * Math.random();
  40.             d.y = 500 * Math.random();
  41.             d.alpha = 0;
  42.             return d;
  43.         }
  44.     }
  45. }
  46. import flash.display.*;
  47. import flash.filters.*;
  48. import flash.text.*;
  49. class Circle extends Shape{
  50.     public function Circle(color:uint):void{
  51.         graphics.beginFill(color);
  52.         graphics.drawCircle(006);
  53.         graphics.endFill();
  54.         blendMode=BlendMode.ADD;
  55.         filters=[new BlurFilter(331)];
  56.     }
  57. }
noswf
  1. // forked from hisasann's forked from: Hello World!!!
  2. package{
  3.     import flash.display.*;
  4.     import flash.text.*;
  5.     import flash.filters.*;
  6.     import flash.geom.*;
  7.     import caurina.transitions.Tweener;
  8.     [SWF(backgroundColor="0x000000")]
  9.     public class HelloWorld extends Sprite{
  10.         private var bd:BitmapData;
  11.         private var baseColor:uint = 0xFFFFFF;
  12.         public function HelloWorld():void{
  13.             var tf:TextField = new TextField();
  14.             tf.textColor = 0x000000;
  15.             tf.htmlText = "<font face='Arial' size='16'>COM\nRADE</font>";
  16.             tf.autoSize = "left";
  17.             bd = new BitmapData(tf.width, tf.height, false, baseColor);
  18.             bd.draw(tf);
  19.             for(var i:int = 0; i < tf.textWidth; i++){
  20.                 for(var j:int = 0; j < tf.textHeight; j++){
  21.                     if (bd.getPixel(i, j) == baseColor)
  22.                         continue;
  23.                     Tweener.addTween(
  24.                         randomize(addChild(new Circle(Math.random() * 0xffffff))), 
  25.                         {
  26.                             x: i * 10,
  27.                             y: j * 10,
  28.                             alpha: 1,
  29.                             delay: (i + j) * .03 * Math.random(),
  30.                             time: 1,
  31.                             transition: "easeOutCirc"
  32.                         }
  33.                     );
  34.                 }
  35.             }
  36.         }
  37.         
  38.         private function randomize(d:DisplayObject):DisplayObject{
  39.             d.x = 500 * Math.random();
  40.             d.y = 500 * Math.random();
  41.             d.alpha = 0;
  42.             return d;
  43.         }
  44.     }
  45. }
  46. import flash.display.*;
  47. import flash.filters.*;
  48. import flash.text.*;
  49. class Circle extends Shape{
  50.     public function Circle(color:uint):void{
  51.         graphics.beginFill(color);
  52.         graphics.drawCircle(006);
  53.         graphics.endFill();
  54.         blendMode=BlendMode.ADD;
  55.         filters=[new BlurFilter(331)];
  56.     }
  57. }
noswf
  1. // forked from hisasann's forked from: Hello World!!!
  2. package{
  3.     import flash.display.*;
  4.     import flash.text.*;
  5.     import flash.filters.*;
  6.     import flash.geom.*;
  7.     import caurina.transitions.Tweener;
  8.     [SWF(backgroundColor="0x000000")]
  9.     public class HelloWorld extends Sprite{
  10.         private var bd:BitmapData;
  11.         private var baseColor:uint = 0xFFFFFF;
  12.         public function HelloWorld():void{
  13.             var tf:TextField = new TextField();
  14.             tf.textColor = 0x000000;
  15.             tf.htmlText = "<font face='Times New Roman' size='18'>Hello\nWorld</font>";
  16.             tf.autoSize = "left";
  17.             bd = new BitmapData(tf.width, tf.height, false, baseColor);
  18.             bd.draw(tf);
  19.             for(var i:int = 0; i < tf.textWidth; i++){
  20.                 for(var j:int = 0; j < tf.textHeight; j++){
  21.                     if (bd.getPixel(i, j) == baseColor)
  22.                         continue;
  23.                     Tweener.addTween(
  24.                         randomize(addChild(new Circle(Math.random() * 0xFFFFFF))), 
  25.                         {
  26.                             x: i * 10,
  27.                             y: j * 10,
  28.                             alpha: 1,
  29.                             delay: (i + j) * .2 * Math.random(),
  30.                             time: 1,
  31.                             transition: "easeOutCirc"
  32.                         }
  33.                     );
  34.                 }
  35.             }
  36.         }
  37.         
  38.         private function randomize(d:DisplayObject):DisplayObject{
  39.             d.x = 500 * Math.random();
  40.             d.y = 500 * Math.random();
  41.             d.alpha = 0;
  42.             return d;
  43.         }
  44.     }
  45. }
  46. import flash.display.*;
  47. import flash.filters.*;
  48. import flash.text.*;
  49. class Circle extends Shape{
  50.     public function Circle(color:uint):void{
  51.         graphics.beginFill(color);
  52.         graphics.drawCircle(006);
  53.         graphics.endFill();
  54.         blendMode=BlendMode.ADD;
  55.         filters=[new BlurFilter(331)];
  56.     }
  57. }
noswf
  1. // forked from hisasann's forked from: Hello World!!!
  2. package{
  3.     import flash.display.*;
  4.     import flash.text.*;
  5.     import flash.filters.*;
  6.     import flash.geom.*;
  7.     import caurina.transitions.Tweener;
  8.     [SWF(backgroundColor="0x000000")]
  9.     public class HelloWorld extends Sprite{
  10.         private var bd:BitmapData;
  11.         private var baseColor:uint = 0xFFFFFF;
  12.         public function HelloWorld():void{
  13.             var tf:TextField = new TextField();
  14.             tf.textColor = 0x000000;
  15.             tf.htmlText = "<font face='Times New Roman' size='18'>Hello\nWorld</font>";
  16.             tf.autoSize = "left";
  17.             bd = new BitmapData(tf.width, tf.height, false, baseColor);
  18.             bd.draw(tf);
  19.             for(var i:int = 0; i < tf.textWidth; i++){
  20.                 for(var j:int = 0; j < tf.textHeight; j++){
  21.                     if (bd.getPixel(i, j) == baseColor)
  22.                         continue;
  23.                     Tweener.addTween(
  24.                         randomize(addChild(new Circle(Math.random() * 0xFFFFFF))), 
  25.                         {
  26.                             x: i * 10,
  27.                             y: j * 10,
  28.                             alpha: 1,
  29.                             delay: (i + j) * .2 * Math.random(),
  30.                             time: 1,
  31.                             transition: "easeOutCirc"
  32.                         }
  33.                     );
  34.                 }
  35.             }
  36.         }
  37.         
  38.         private function randomize(d:DisplayObject):DisplayObject{
  39.             d.x = 500 * Math.random();
  40.             d.y = 500 * Math.random();
  41.             d.alpha = 0;
  42.             return d;
  43.         }
  44.     }
  45. }
  46. import flash.display.*;
  47. import flash.filters.*;
  48. import flash.text.*;
  49. class Circle extends Shape{
  50.     public function Circle(color:uint):void{
  51.         graphics.beginFill(color);
  52.         graphics.drawCircle(006);
  53.         graphics.endFill();
  54.         blendMode=BlendMode.ADD;
  55.         filters=[new BlurFilter(331)];
  56.     }
  57. }
noswf
Get Adobe Flash Player