Update AIR externs

This commit is contained in:
Joshua Granick
2017-08-25 14:04:53 -07:00
parent 194bfde219
commit 03d66367c8
70 changed files with 239 additions and 143 deletions

View File

@@ -1,8 +1,9 @@
package flash.text;
extern class StageText extends flash.events.EventDispatcher {
@:final extern class StageText extends flash.events.EventDispatcher {
var autoCapitalize : AutoCapitalize;
var autoCorrect : Bool;
var clearButtonMode(never,default) : StageTextClearButtonMode;
var color : UInt;
var displayAsPassword : Bool;
var editable : Bool;

View File

@@ -0,0 +1,8 @@
package flash.text;
@:fakeEnum(String) extern enum StageTextClearButtonMode {
ALWAYS;
NEVER;
UNLESS_EDITING;
WHILE_EDITING;
}