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

AppVFlashTester

Get Adobe Flash player
by jasoneilts 12 Apr 2013
    Embed
package {
    import flash.display.*;
    import flash.text.*;
    import flash.external.ExternalInterface;
    
    public class AppVTitleSetter extends Sprite {
        
        private var greeting:TextField = new TextField();
        
        public function AppVTitleSetter() {
            greeting.text = "Application Virtualization is super cool!";
            
            greeting.width = 600;

            greeting.x = 100;

            greeting.y = 100;

            addChild(greeting);

            
            ExternalInterface.call("setTestValue");
        }
    }
}