home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / core / IToolTip.as < prev    next >
Text File  |  2008-09-02  |  284b  |  16 lines

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