/* Open a new FLash file (ActionScript 3.0). Select TimeLine --> Top Layer --> Frame 1 Select Window --> Actions (F9) Copy and paste this snippet Observe the stage */ // The historic Hello World but to the stage. var hiText:TextField = new TextField(); hiText.text = "Hello user."; addChild(hiText);