flash on 2009-9-5 nayu forked:0favorite:1lines:19license : All rights reserved modified : 2009-09-05 18:05:23 Embed Tweet package { import flash.display.Sprite; import mx.controls.*; import flash.events.*; import flash.text.*; public class FlashTest extends Sprite { public function FlashTest() { // write as3 code here.. var btn:Button = new Button(); stage.addEventListener(MouseEvent.CLICK, showMes); } public function showMes(e:Event):void { var mytxt:TextField= new TextField(); mytxt.text = String(e.type); this.addChild(mytxt); } } } Code Fullscreen Preview Fullscreen Tastypuppies.. addEventListener type MouseEvent.CLICK TextField text addChild Event String Sprite