In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

text sample 2011-4-3

Get Adobe Flash player
by acesdm 03 Apr 2011
    Embed
/**
 * Copyright acesdm ( http://wonderfl.net/user/acesdm )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/7Glz
 */

/* text sample */
package {
    import flash.display.Sprite;
    import flash.text.*;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var textField:TextField = new TextField();
            textField.text = "I love ActionScript!";
            
            // 「TextField」クラスを「Sprite」クラスに追加
            addChild(textField);
        }
    }
}