home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / mx / core / IFlexDisplayObject.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  3.6 KB  |  127 lines

  1. package mx.core
  2. {
  3.    import flash.accessibility.AccessibilityProperties;
  4.    import flash.display.DisplayObject;
  5.    import flash.display.DisplayObjectContainer;
  6.    import flash.display.IBitmapDrawable;
  7.    import flash.display.LoaderInfo;
  8.    import flash.display.Stage;
  9.    import flash.events.IEventDispatcher;
  10.    import flash.geom.Point;
  11.    import flash.geom.Rectangle;
  12.    import flash.geom.Transform;
  13.    
  14.    public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher
  15.    {
  16.        
  17.       
  18.       function get visible() : Boolean;
  19.       
  20.       function get rotation() : Number;
  21.       
  22.       function localToGlobal(param1:Point) : Point;
  23.       
  24.       function get name() : String;
  25.       
  26.       function set width(param1:Number) : void;
  27.       
  28.       function get measuredHeight() : Number;
  29.       
  30.       function get blendMode() : String;
  31.       
  32.       function get scale9Grid() : Rectangle;
  33.       
  34.       function set name(param1:String) : void;
  35.       
  36.       function set scaleX(param1:Number) : void;
  37.       
  38.       function set scaleY(param1:Number) : void;
  39.       
  40.       function get measuredWidth() : Number;
  41.       
  42.       function get accessibilityProperties() : AccessibilityProperties;
  43.       
  44.       function set scrollRect(param1:Rectangle) : void;
  45.       
  46.       function get cacheAsBitmap() : Boolean;
  47.       
  48.       function globalToLocal(param1:Point) : Point;
  49.       
  50.       function get height() : Number;
  51.       
  52.       function set blendMode(param1:String) : void;
  53.       
  54.       function get parent() : DisplayObjectContainer;
  55.       
  56.       function getBounds(param1:DisplayObject) : Rectangle;
  57.       
  58.       function get opaqueBackground() : Object;
  59.       
  60.       function set scale9Grid(param1:Rectangle) : void;
  61.       
  62.       function setActualSize(param1:Number, param2:Number) : void;
  63.       
  64.       function set alpha(param1:Number) : void;
  65.       
  66.       function set accessibilityProperties(param1:AccessibilityProperties) : void;
  67.       
  68.       function get width() : Number;
  69.       
  70.       function hitTestPoint(param1:Number, param2:Number, param3:Boolean = false) : Boolean;
  71.       
  72.       function set cacheAsBitmap(param1:Boolean) : void;
  73.       
  74.       function get scaleX() : Number;
  75.       
  76.       function get scaleY() : Number;
  77.       
  78.       function get scrollRect() : Rectangle;
  79.       
  80.       function get mouseX() : Number;
  81.       
  82.       function get mouseY() : Number;
  83.       
  84.       function set height(param1:Number) : void;
  85.       
  86.       function set mask(param1:DisplayObject) : void;
  87.       
  88.       function getRect(param1:DisplayObject) : Rectangle;
  89.       
  90.       function get alpha() : Number;
  91.       
  92.       function set transform(param1:Transform) : void;
  93.       
  94.       function move(param1:Number, param2:Number) : void;
  95.       
  96.       function get loaderInfo() : LoaderInfo;
  97.       
  98.       function get root() : DisplayObject;
  99.       
  100.       function hitTestObject(param1:DisplayObject) : Boolean;
  101.       
  102.       function set opaqueBackground(param1:Object) : void;
  103.       
  104.       function set visible(param1:Boolean) : void;
  105.       
  106.       function get mask() : DisplayObject;
  107.       
  108.       function set x(param1:Number) : void;
  109.       
  110.       function set y(param1:Number) : void;
  111.       
  112.       function get transform() : Transform;
  113.       
  114.       function set filters(param1:Array) : void;
  115.       
  116.       function get x() : Number;
  117.       
  118.       function get y() : Number;
  119.       
  120.       function get filters() : Array;
  121.       
  122.       function set rotation(param1:Number) : void;
  123.       
  124.       function get stage() : Stage;
  125.    }
  126. }
  127.