home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Puzzle
/
filler.swf
/
scripts
/
mx
/
core
/
IChildList.as
< prev
next >
Wrap
Text File
|
2008-09-02
|
915b
|
33 lines
package mx.core
{
import flash.display.DisplayObject;
import flash.geom.Point;
public interface IChildList
{
function get numChildren() : int;
function contains(param1:DisplayObject) : Boolean;
function getChildByName(param1:String) : DisplayObject;
function removeChildAt(param1:int) : DisplayObject;
function getChildIndex(param1:DisplayObject) : int;
function addChildAt(param1:DisplayObject, param2:int) : DisplayObject;
function getObjectsUnderPoint(param1:Point) : Array;
function removeChild(param1:DisplayObject) : DisplayObject;
function getChildAt(param1:int) : DisplayObject;
function addChild(param1:DisplayObject) : DisplayObject;
function setChildIndex(param1:DisplayObject, param2:int) : void;
}
}