More embed metadata samples

This commit is contained in:
Jindra Petřík
2023-09-09 19:48:02 +02:00
parent a695aab7e9
commit 61b73c6db6
21 changed files with 158 additions and 16 deletions

View File

@@ -0,0 +1,30 @@
package
{
import flash.display.Sprite;
import flash.events.Event;
import embed_attributes.TestEmbedFlex;
/**
* ...
* @author JPEXS
*/
public class MainAttributesFlex extends Sprite
{
TestEmbedFlex;
public function MainAttributesFlex()
{
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
}
}
}