ErrorEvent.hx 270 B

1234567
  1. package flash.events;
  2. extern class ErrorEvent extends TextEvent {
  3. @:require(flash10_1) var errorID(default,null) : Int;
  4. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?text : String, id : Int = 0) : Void;
  5. static var ERROR : String;
  6. }