Added #1290 Export to FlashDevelop project

This commit is contained in:
Jindra Petřík
2024-08-02 09:14:01 +02:00
parent 31099c64e8
commit c6790f70cf
24 changed files with 380 additions and 50 deletions

View File

@@ -11,8 +11,6 @@ package
public class MainAttributesAir extends Sprite
{
TestEmbedAir;
public function MainAttributesAir()
{
if (stage) init();
@@ -22,7 +20,8 @@ package
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
new TestEmbedAir();
}
}

View File

@@ -9,9 +9,7 @@ package
* @author JPEXS
*/
public class MainAttributesFlex extends Sprite
{
TestEmbedFlex;
{
public function MainAttributesFlex()
{
@@ -22,7 +20,8 @@ package
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
new TestEmbedFlex();
}
}

View File

@@ -9,17 +9,7 @@ package
* @author JPEXS
*/
public class MainClassesAir extends Sprite
{
TestBinaryData;
TestFont;
TestFontCFF;
TestImage;
TestImageGrid;
//TestImageSvg;
TestSameImage;
TestSound;
TestSwfSymbol;
{
public function MainClassesAir()
{
if (stage) init();
@@ -29,7 +19,16 @@ package
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
new TestBinaryData();
new TestFont();
new TestFontCFF();
new TestImage();
new TestImageGrid();
//new TestImageSvg();
new TestSameImage();
new TestSound();
new TestSwfSymbol();
}
}

View File

@@ -9,17 +9,7 @@ package
* @author JPEXS
*/
public class MainClassesFlex extends Sprite
{
TestBinaryData;
TestFont;
//TestFontCFF;
TestImage;
TestImageGrid;
TestImageSvg;
TestSameImage;
TestSound;
TestSwfSymbol;
{
public function MainClassesFlex()
{
if (stage) init();
@@ -29,7 +19,17 @@ package
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
new TestBinaryData();
new TestFont();
//new TestFontCFF();
new TestImage();
new TestImageGrid();
new TestImageSvg();
new TestSameImage();
new TestSound();
new TestSwfSymbol();
}
}