mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 18:46:24 +00:00
38 lines
866 B
ActionScript
38 lines
866 B
ActionScript
package
|
|
{
|
|
import flash.display.Sprite;
|
|
import flash.events.Event;
|
|
import embed_classes.*;
|
|
|
|
/**
|
|
* ...
|
|
* @author JPEXS
|
|
*/
|
|
public class MainClassesFlex extends Sprite
|
|
{
|
|
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);
|
|
|
|
|
|
new TestBinaryData();
|
|
new TestFont();
|
|
//new TestFontCFF();
|
|
new TestImage();
|
|
new TestImageGrid();
|
|
new TestImageSvg();
|
|
new TestSameImage();
|
|
new TestSound();
|
|
new TestSwfSymbol();
|
|
}
|
|
|
|
}
|
|
|
|
}
|