MovieClip()
创建新的 MovieClip 实例。
//
addChild(child:DisplayObject):DisplayObject
将一个 DisplayObject 子实例添加到该 DisplayObjectContainer 实例中。
//
addChildAt(child:DisplayObject, index:int):DisplayObject
将一个 DisplayObject 子实例添加到该 DisplayObjectContainer 实例中。
//
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。
//
areInaccessibleObjectsUnderPoint(point:Point):Boolean
表示安全限制是否会导致出现以下情况:在列表中忽略了使用指定 point 点调用 DisplayObjectContainer.getObjectsUnderPoint() 方法时返回的所有显示对象。
//
contains(child:DisplayObject):Boolean
确定指定显示对象是 DisplayObjectContainer 实例的子项还是该实例本身。
//
dispatchEvent(event:Event):Boolean
将事件调度到事件流中。
//
getBounds(targetCoordinateSpace:DisplayObject):Rectangle
返回一个矩形,该矩形定义相对于 targetCoordinateSpace 对象坐标系的显示对象区域。
//
getChildAt(index:int):DisplayObject
返回位于指定索引处的子显示对象实例。
//
getChildByName(name:String):DisplayObject
返回具有指定名称的子显示对象。
//
getChildIndex(child:DisplayObject):int
返回 DisplayObject 的 child 实例的索引位置。
//
getObjectsUnderPoint(point:Point):Array
返回对象的数组,这些对象位于指定点下,并且是该 DisplayObjectContainer 实例的子项(或孙子项,依此类推)。
//
getRect(targetCoordinateSpace:DisplayObject):Rectangle
返回一个矩形,该矩形根据 targetCoordinateSpace 参数定义的坐标系定义显示对象的边界,但不包括形状上的任何笔触。
//
globalToLocal(point:Point):Point
将 point 对象从舞台(全局)坐标转换为显示对象的(本地)坐标。
//
globalToLocal3D(point:Point):Vector3D
将二维点从舞台(全局)坐标转换为三维显示对象的(本地)坐标。
//
gotoAndPlay(frame:Object, scene:String = null):void
从指定帧开始播放 SWF 文件。
//
gotoAndStop(frame:Object, scene:String = null):void
将播放头移到影片剪辑的指定帧并停在那里。
//
hasEventListener(type:String):Boolean
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。
//
hasOwnProperty(name:String):Boolean
表示对象是否已经定义了指定的属性。
//
hitTestObject(obj:DisplayObject):Boolean
计算显示对象的边框,以确定它是否与 obj 显示对象的边框重叠或相交。
//
hitTestPoint(x:Number, y:Number, shapeFlag:Boolean = false):Boolean
计算显示对象,以确定它是否与 x 和 y 参数指定的点重叠或相交。
//
isPrototypeOf(theClass:Object):Boolean
表示 Object 类的实例是否在指定为参数的对象的原型链中。
//
local3DToGlobal(point3d:Vector3D):Point
将三维显示对象的(本地)坐标的三维点转换为舞台(全局)坐标中的二维点。
//
localToGlobal(point:Point):Point
将 point 对象从显示对象的(本地)坐标转换为舞台(全局)坐标。
//
nextFrame():void
将播放头转到下一帧并停止。
//
nextScene():void
将播放头移动到 MovieClip 实例的下一场景。
//
play():void
在影片剪辑的时间轴中移动播放头。
//
prevFrame():void
将播放头转到前一帧并停止。
//
prevScene():void
将播放头移动到 MovieClip 实例的前一场景。
//
propertyIsEnumerable(name:String):Boolean
表示指定的属性是否存在、是否可枚举。
//
removeChild(child:DisplayObject):DisplayObject
从 DisplayObjectContainer 实例的子列表中删除指定的 child DisplayObject 实例。
//
removeChildAt(index:int):DisplayObject
从 DisplayObjectContainer 的子列表中指定的 index 位置删除子 DisplayObject。
//
removeChildren(beginIndex:int = 0, endIndex:int = 0x7fffffff):void
从 DisplayObjectContainer 实例的子级列表中删除所有子 DisplayObject 实例。
//
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
从 EventDispatcher 对象中删除侦听器。
//
requestSoftKeyboard():Boolean
显示虚拟键盘。
//
setChildIndex(child:DisplayObject, index:int):void
更改现有子项在显示对象容器中的位置。
//
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
设置循环操作动态属性的可用性。
//
startDrag(lockCenter:Boolean = false, bounds:Rectangle = null):void
允许用户拖动指定的 Sprite。
//
startTouchDrag(touchPointID:int, lockCenter:Boolean = false, bounds:Rectangle = null):void
使用户可以在启用触摸的设备上拖动指定的 Sprite。
//
stop():void
停止影片剪辑中的播放头。
//
stopAllMovieClips():void
对源起于此对象的所有 MovieClip 递归停止时间轴执行。
//
stopDrag():void
结束 startDrag() 方法。
//
stopTouchDrag(touchPointID:int):void
结束 startTouchDrag() 方法,用于启用触摸的设备。
//
swapChildren(child1:DisplayObject, child2:DisplayObject):void
交换两个指定子对象的 Z 轴顺序(从前到后顺序)。
//
swapChildrenAt(index1:int, index2:int):void
在子级列表中两个指定的索引位置,交换子对象的 Z 轴顺序(前后顺序)。
//
toLocaleString():String
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。
//
toString():String
返回指定对象的字符串表示形式。
//
valueOf():Object
返回指定对象的原始值。
//
willTrigger(type:String):Boolean
检查是否用此 EventDispatcher 对象或其任何祖代为指定事件类型注册了事件侦听器。