File: AVStatusEvent.hx

package info (click to toggle)
haxe 1%3A4.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 42,984 kB
  • sloc: ml: 132,401; ansic: 2,403; makefile: 436; java: 365; cs: 336; cpp: 318; python: 315; sh: 75; objc: 64; php: 45; xml: 30; javascript: 11
file content (28 lines) | stat: -rw-r--r-- 1,222 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package flash.events;

extern class AVStatusEvent extends Event {
	@:flash.property var description(get,never) : String;
	@:flash.property var notificationType(get,never) : String;
	@:flash.property var result(get,never) : flash.media.AVResult;
	function new(?type : String, bubbles : Bool = false, cancelable : Bool = false, ?inNotificationType : String, inResult : Int = 0, ?inDescription : String) : Void;
	private function get_description() : String;
	private function get_notificationType() : String;
	private function get_result() : flash.media.AVResult;
	static final AV_STATUS : String;
	static final BACKGROUND_MANIFEST_ERROR : String;
	static final BACKGROUND_MANIFEST_WARNING : String;
	static final BUFFER_STATE : String;
	static final DECODER_TYPE : String;
	static final DIMENSION_CHANGE : String;
	static final ERROR : String;
	static final INSERTION_COMPLETE : String;
	static final LOAD_COMPLETE : String;
	static final MANIFEST_UPDATE : String;
	static final PLAY_STATE : String;
	static final RENDER_TYPE : String;
	static final SEEK_COMPLETE : String;
	static final STEP_COMPLETE : String;
	static final STREAM_SWITCH : String;
	static final TRICKPLAY_ENDED : String;
	static final WARNING : String;
}