AVStatusEvent.hx 1.2 KB

12345678910111213141516171819202122232425262728
  1. package flash.events;
  2. extern class AVStatusEvent extends Event {
  3. @:flash.property var description(get,never) : String;
  4. @:flash.property var notificationType(get,never) : String;
  5. @:flash.property var result(get,never) : flash.media.AVResult;
  6. function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, ?inNotificationType : String, inResult : Int = 0, ?inDescription : String) : Void;
  7. private function get_description() : String;
  8. private function get_notificationType() : String;
  9. private function get_result() : flash.media.AVResult;
  10. static final AV_STATUS : String;
  11. static final BACKGROUND_MANIFEST_ERROR : String;
  12. static final BACKGROUND_MANIFEST_WARNING : String;
  13. static final BUFFER_STATE : String;
  14. static final DECODER_TYPE : String;
  15. static final DIMENSION_CHANGE : String;
  16. static final ERROR : String;
  17. static final INSERTION_COMPLETE : String;
  18. static final LOAD_COMPLETE : String;
  19. static final MANIFEST_UPDATE : String;
  20. static final PLAY_STATE : String;
  21. static final RENDER_TYPE : String;
  22. static final SEEK_COMPLETE : String;
  23. static final STEP_COMPLETE : String;
  24. static final STREAM_SWITCH : String;
  25. static final TRICKPLAY_ENDED : String;
  26. static final WARNING : String;
  27. }