home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / caurina / transitions / SpecialPropertySplitter.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  717 b   |  29 lines

  1. package caurina.transitions
  2. {
  3.    public class SpecialPropertySplitter
  4.    {
  5.        
  6.       
  7.       public var parameters:Array;
  8.       
  9.       public var splitValues:Function;
  10.       
  11.       public function SpecialPropertySplitter(p_splitFunction:Function, p_parameters:Array)
  12.       {
  13.          super();
  14.          splitValues = p_splitFunction;
  15.          parameters = p_parameters;
  16.       }
  17.       
  18.       public function toString() : String
  19.       {
  20.          var value:* = "";
  21.          value += "[SpecialPropertySplitter ";
  22.          value += "splitValues:" + String(splitValues);
  23.          value += ", ";
  24.          value += "parameters:" + String(parameters);
  25.          return value + "]";
  26.       }
  27.    }
  28. }
  29.