home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / core / IToolTip.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  269 b   |  15 lines

  1. package mx.core
  2. {
  3.    import flash.geom.Rectangle;
  4.    
  5.    public interface IToolTip extends IUIComponent
  6.    {
  7.       function set text(param1:String) : void;
  8.       
  9.       function get screen() : Rectangle;
  10.       
  11.       function get text() : String;
  12.    }
  13. }
  14.  
  15.