import flash.display.Sprite; import flash.text.TextField; public class Main extends Sprite { public function Main( ) { var field:TextField = new TextField( ); field.background = true; field.backgroundColor = 0x00FFFF; // Set the background to light blue
addChild(field); } } }
Related Scripts with Example Source Code in same category :