forked from: Why I can not see traced text "hello" somewhere?

by hemingway
forked from: Why I can not see traced text "hello" somewhere?

Where can I see traced text "hello"?
♥0 | Line 16 | Modified 2014-05-03 16:47:12 | MIT License
play

ActionScript3 source code

/**
 * Copyright hemingway ( http://wonderfl.net/user/hemingway )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/nnb4
 */

// forked from Martyna's Why I can not see traced text "hello" somewhere?
// Where can I see traced text "hello"?
package {
    import flash.display.*;
    import flash.events.*;
    import flash.text.*;
    import com.actionscriptbible.Example;
    
    public class FlashTest extends Sprite {
        
        private var field:TextField = new TextField();
        
        public function FlashTest() {
            Wonderfl.disable_capture();
            addChild(field);
            field.border = true;
            field.text = "It's raining!"
            trace ("hello");
            
        }
    }
}