mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 10:26:11 +00:00
38 lines
770 B
ActionScript
38 lines
770 B
ActionScript
package
|
|
{
|
|
import flash.display.Sprite;
|
|
import flash.events.Event;
|
|
import embed_classes.*;
|
|
|
|
/**
|
|
* ...
|
|
* @author JPEXS
|
|
*/
|
|
public class MainClassesFlex extends Sprite
|
|
{
|
|
TestBinaryData;
|
|
TestFont;
|
|
//TestFontCFF;
|
|
TestImage;
|
|
TestImageGrid;
|
|
TestImageSvg;
|
|
TestSameImage;
|
|
TestSound;
|
|
TestSwfSymbol;
|
|
|
|
public function MainClassesFlex()
|
|
{
|
|
if (stage) init();
|
|
else addEventListener(Event.ADDED_TO_STAGE, init);
|
|
}
|
|
|
|
private function init(e:Event = null):void
|
|
{
|
|
removeEventListener(Event.ADDED_TO_STAGE, init);
|
|
// entry point
|
|
}
|
|
|
|
}
|
|
|
|
}
|