home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 161 / MOBICLIC161.ISO / pc / DATA / DSS161 / DSS161_00 / DSS161_00.swf / scripts / dss161 / engineaddons / gamesprotos / actors / actorClip / IActorClip.as < prev   
Text File  |  2014-01-15  |  5KB  |  179 lines

  1. package dss161.engineaddons.gamesprotos.actors.actorClip
  2. {
  3.    import dss161.engineaddons.gamesprotos.Actor;
  4.    import dss161.engineaddons.gamesprotos.DragDropParams;
  5.    import flash.display.DisplayObject;
  6.    import flash.display.DisplayObjectContainer;
  7.    import flash.display.MovieClip;
  8.    import flash.geom.Point;
  9.    
  10.    public interface IActorClip
  11.    {
  12.        
  13.       
  14.       function addActor(param1:* = undefined) : *;
  15.       
  16.       function removeActor(param1:Actor) : void;
  17.       
  18.       function get alpha() : Number;
  19.       
  20.       function set alpha(param1:Number) : void;
  21.       
  22.       function get clip() : MovieClip;
  23.       
  24.       function get totalFrames() : int;
  25.       
  26.       function get currentFrame() : int;
  27.       
  28.       function get currentLabel() : String;
  29.       
  30.       function get currentLabels() : Array;
  31.       
  32.       function set depthIndex(param1:int) : void;
  33.       
  34.       function get depthIndex() : int;
  35.       
  36.       function get enabled() : Boolean;
  37.       
  38.       function set enabled(param1:Boolean) : void;
  39.       
  40.       function get height() : Number;
  41.       
  42.       function set height(param1:Number) : void;
  43.       
  44.       function set parent(param1:DisplayObjectContainer) : void;
  45.       
  46.       function get parent() : DisplayObjectContainer;
  47.       
  48.       function get visible() : Boolean;
  49.       
  50.       function set visible(param1:Boolean) : void;
  51.       
  52.       function get width() : Number;
  53.       
  54.       function set width(param1:Number) : void;
  55.       
  56.       function get x() : Number;
  57.       
  58.       function set x(param1:Number) : void;
  59.       
  60.       function get y() : Number;
  61.       
  62.       function set y(param1:Number) : void;
  63.       
  64.       function get name() : String;
  65.       
  66.       function set name(param1:String) : void;
  67.       
  68.       function set onFrameExit(param1:Function) : void;
  69.       
  70.       function get onFrameExit() : Function;
  71.       
  72.       function set onFrameEnter(param1:Function) : void;
  73.       
  74.       function get onFrameEnter() : Function;
  75.       
  76.       function set onLabelEnter(param1:Function) : void;
  77.       
  78.       function get onLabelEnter() : Function;
  79.       
  80.       function set onLabelExit(param1:Function) : void;
  81.       
  82.       function get onLabelExit() : Function;
  83.       
  84.       function set onLabelEnd(param1:Function) : void;
  85.       
  86.       function get onLabelEnd() : Function;
  87.       
  88.       function get clickMode() : String;
  89.       
  90.       function set clickMode(param1:String) : void;
  91.       
  92.       function get onClick() : Function;
  93.       
  94.       function set onClick(param1:Function) : void;
  95.       
  96.       function get onClickState() : Object;
  97.       
  98.       function set onClickState(param1:Object) : void;
  99.       
  100.       function get onRollOver() : Function;
  101.       
  102.       function set onRollOver(param1:Function) : void;
  103.       
  104.       function get onRollOverState() : Object;
  105.       
  106.       function set onRollOverState(param1:Object) : void;
  107.       
  108.       function get onRollOut() : Function;
  109.       
  110.       function set onRollOut(param1:Function) : void;
  111.       
  112.       function get dragEnabled() : Boolean;
  113.       
  114.       function set dragEnabled(param1:Boolean) : void;
  115.       
  116.       function get onDragStart() : Function;
  117.       
  118.       function set onDragStart(param1:Function) : void;
  119.       
  120.       function dragStart() : void;
  121.       
  122.       function dragStop() : void;
  123.       
  124.       function get onDrag() : Function;
  125.       
  126.       function set onDrag(param1:Function) : void;
  127.       
  128.       function get onDrop() : Function;
  129.       
  130.       function set onDrop(param1:Function) : void;
  131.       
  132.       function get onRelease() : Function;
  133.       
  134.       function set onRelease(param1:Function) : void;
  135.       
  136.       function get dragDrop() : DragDropParams;
  137.       
  138.       function get initialState() : Object;
  139.       
  140.       function set initialState(param1:Object) : void;
  141.       
  142.       function initAs(param1:* = null) : void;
  143.       
  144.       function stateChange(param1:String, param2:Object) : void;
  145.       
  146.       function getPos(param1:String = null) : Point;
  147.       
  148.       function setToPos(param1:Number = 0, param2:Number = 0, param3:String = null) : void;
  149.       
  150.       function hasLabel(param1:String) : Boolean;
  151.       
  152.       function gotoAndStop(param1:*, param2:Object = null) : void;
  153.       
  154.       function gotoAndPlay(param1:*, param2:Object = null) : void;
  155.       
  156.       function getChildByName(param1:String) : DisplayObject;
  157.       
  158.       function dissociate() : void;
  159.       
  160.       function get sleep() : Function;
  161.       
  162.       function get wake() : Function;
  163.       
  164.       function get destroy() : Function;
  165.       
  166.       function restore() : void;
  167.       
  168.       function comeBack() : void;
  169.       
  170.       function get limitZone() : *;
  171.       
  172.       function set limitZone(param1:*) : void;
  173.       
  174.       function play(param1:* = null, param2:* = null, param3:Function = null) : void;
  175.       
  176.       function stop() : void;
  177.    }
  178. }
  179.