Skip to content

Instantly share code, notes, and snippets.

@robinsk
Created January 25, 2010 10:41
Show Gist options
  • Save robinsk/285781 to your computer and use it in GitHub Desktop.
Save robinsk/285781 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo"
applicationComplete="appComplete()"
width="640"
height="480">
<fx:Script>
<![CDATA[
private function appComplete():void
{
trace("onAppComplete()");
var loader:HTMLLoader = new HTMLLoader();
}
]]>
</fx:Script>
</s:WindowedApplication>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment