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

  1. package mx.core
  2. {
  3.    public interface IButton extends IUIComponent
  4.    {
  5.       function get emphasized() : Boolean;
  6.       
  7.       function set emphasized(param1:Boolean) : void;
  8.       
  9.       function callLater(param1:Function, param2:Array = null) : void;
  10.    }
  11. }
  12.  
  13.