RED N WHITE YUCK

by JohnBrookes
♥0 | Line 15 | Modified 2010-08-01 02:12:17 | MIT License
play

ActionScript3 source code

/**
 * Copyright JohnBrookes ( http://wonderfl.net/user/JohnBrookes )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/dF5Y
 */

package {
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFormat;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            
            var tf:TextField = new TextField();
            tf.width = 450;
            var tfm:TextFormat = new TextFormat("Myriad", 20, 0xcc0000);
            tf.defaultTextFormat = tfm;
            
            tf.text = "SWEET JEBUS:\nRED ON WHITE!!\n\nMY EYES THEY BURN";
            addChild(tf);
        }
    }
}