/* 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 */ // We can create text fields and display them using ActionScript alone // We don't need to use Flash. Why would we do this? // What are the advantages? var ourText_txt:TextField = new TextField(); ourText_txt.text = "This is some text"; ourText_txt.x = 200; ourText_txt.y = 200; ourText_txt.width = 250; addChild (ourText_txt); ourText_txt.text = "And we have changed our text.";