ErrorEvent.hx 325 B

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