flash on 2011-7-25
♥0 |
Line 40 |
Modified 2011-07-25 09:35:13 |
GPLv3 License
archived:2017-03-20 06:56:32
ActionScript3 source code
/**
* Copyright propg ( http://wonderfl.net/user/propg )
* GNU General Public License, v3 ( http://www.gnu.org/licenses/quick-guide-gplv3.html )
* Downloaded from: http://wonderfl.net/c/tumb
*/
<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="OnCreationCompleteHandler(event)">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace controls "nt.controls.*";
@namespace controls1 "labo.controls.*";
@namespace code "http://code.google.com/p/flexlib/";
s|Application {
backgroundColor: #EFE1FF;
}
global {
font-family: "MS UI Gothic", Verdana, Arial, Helvetica, sans-serif;
fontSize:14px;
}
</fx:Style>
<fx:Declarations>
</fx:Declarations>
<fx:Script>
<![CDATA[
import spark.components.BorderContainer;
import spark.components.HGroup;
import spark.components.Label;
import spark.components.Button;
import mx.core.UIComponent;
import com.demonsters.debugger.MonsterDebugger;
private function OnCreationCompleteHandler(event:Event):void {
MonsterDebugger.initialize(this);
var xml:XML = new XML();
}
]]>
</fx:Script>
</s:Application>