This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package; | |
| import flash.display.Shape; | |
| import flash.display.Sprite; | |
| import flash.Lib; | |
| import motion.Actuate; | |
| class Main extends Test<Shape>{ | |
| /** this setter is not called on tweening */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package pony.flash; | |
| import haxe.macro.Expr; | |
| import pony.events.Signal; | |
| #if !macro | |
| import flash.external.ExternalInterface; | |
| #end | |
| /** | |
| * ... | |
| * @author AxGord | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import haxe.macro.Context; | |
| import haxe.macro.Type; | |
| class Builder{ | |
| macro static public function getSpriteClass () : Type { | |
| var cls : String = ( | |
| Context.defined("custom_base") | |
| ? Context.definedValue("custom_base") | |
| : "flash.display.Sprite" //by default use this class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package; | |
| import flash.display.StageAlign; | |
| import flash.display.StageScaleMode; | |
| import flash.Lib; | |
| import ru.stablex.ui.UIBuilder; | |
| import ru.stablex.ui.widgets.Bmp; | |
| import ru.stablex.ui.widgets.Widget; | |
| import ru.stablex.ui.widgets.HBox; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package people.jobs; | |
| import traits.ITrait; | |
| import traits.Trait; | |
| /** | |
| * Example trait interface | |
| * |
NewerOlder