RED N WHITE YUCK
♥0 |
Line 15 |
Modified 2010-08-01 02:12:17 |
MIT License
archived:2017-03-20 13:30:13
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);
}
}
}