home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / managers / IToolTipManagerClient.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  254 b   |  13 lines

  1. package mx.managers
  2. {
  3.    import mx.core.IFlexDisplayObject;
  4.    
  5.    public interface IToolTipManagerClient extends IFlexDisplayObject
  6.    {
  7.       function set toolTip(param1:String) : void;
  8.       
  9.       function get toolTip() : String;
  10.    }
  11. }
  12.  
  13.