File: MovieClip.hx

package info (click to toggle)
haxe 1%3A4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,520 kB
  • sloc: ml: 137,268; ansic: 2,491; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (38 lines) | stat: -rw-r--r-- 1,780 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
29
30
31
32
33
34
35
36
37
38
package flash.display;

extern class MovieClip extends Sprite #if !flash_strict implements Dynamic #end {
	@:flash.property var currentFrame(get,never) : Int;
	@:flash.property @:require(flash10) var currentFrameLabel(get,never) : String;
	@:flash.property var currentLabel(get,never) : String;
	@:flash.property var currentLabels(get,never) : Array<FrameLabel>;
	@:flash.property var currentScene(get,never) : Scene;
	@:flash.property var enabled(get,set) : Bool;
	@:flash.property var framesLoaded(get,never) : Int;
	@:flash.property @:require(flash11) var isPlaying(get,never) : Bool;
	@:flash.property var scenes(get,never) : Array<Scene>;
	@:flash.property var totalFrames(get,never) : Int;
	@:flash.property var trackAsMenu(get,set) : Bool;
	function new() : Void;
	function addFrameScript(restArgs : haxe.extern.Rest<Dynamic>) : Void;
	private function get_currentFrame() : Int;
	private function get_currentFrameLabel() : String;
	private function get_currentLabel() : String;
	private function get_currentLabels() : Array<FrameLabel>;
	private function get_currentScene() : Scene;
	private function get_enabled() : Bool;
	private function get_framesLoaded() : Int;
	private function get_isPlaying() : Bool;
	private function get_scenes() : Array<Scene>;
	private function get_totalFrames() : Int;
	private function get_trackAsMenu() : Bool;
	function gotoAndPlay(frame : flash.utils.Object, ?scene : String) : Void;
	function gotoAndStop(frame : flash.utils.Object, ?scene : String) : Void;
	function nextFrame() : Void;
	function nextScene() : Void;
	function play() : Void;
	function prevFrame() : Void;
	function prevScene() : Void;
	private function set_enabled(value : Bool) : Bool;
	private function set_trackAsMenu(value : Bool) : Bool;
	function stop() : Void;
}