AVManifestLoadEvent.hx 676 B

1234567891011121314
  1. package flash.events;
  2. extern class AVManifestLoadEvent extends Event {
  3. @:flash.property var duration(get,never) : Float;
  4. @:flash.property var handle(get,never) : Int;
  5. @:flash.property var result(get,never) : flash.media.AVResult;
  6. @:flash.property var userData(get,never) : Int;
  7. function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, inResult : Int = 0, inUserData : Int = 0, inHandle : Int = 0, inDuration : Float = 0) : Void;
  8. private function get_duration() : Float;
  9. private function get_handle() : Int;
  10. private function get_result() : flash.media.AVResult;
  11. private function get_userData() : Int;
  12. static final AV_MANIFEST_LOAD : String;
  13. }