home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / crazycube.swf / scripts / __Packages / com / Style.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  940 b   |  57 lines

  1. class com.Style
  2. {
  3.    var lWeight;
  4.    var lAlpha;
  5.    var fAlpha;
  6.    var lColor;
  7.    var fColor;
  8.    function Style()
  9.    {
  10.       this.lWeight = 0;
  11.       this.lAlpha = 100;
  12.       this.fAlpha = 100;
  13.       this.lColor = 52224;
  14.       this.fColor = 0;
  15.    }
  16.    function set linealpha(a)
  17.    {
  18.       this.lAlpha = a;
  19.    }
  20.    function set lineweight(a)
  21.    {
  22.       this.lWeight = a;
  23.    }
  24.    function set linecolor(a)
  25.    {
  26.       this.lColor = a;
  27.    }
  28.    function set fillalpha(a)
  29.    {
  30.       this.fAlpha = a;
  31.    }
  32.    function set fillcolor(a)
  33.    {
  34.       this.fColor = a;
  35.    }
  36.    function get linealpha()
  37.    {
  38.       return this.lAlpha;
  39.    }
  40.    function get lineweight()
  41.    {
  42.       return this.lWeight;
  43.    }
  44.    function get linecolor()
  45.    {
  46.       return this.lColor;
  47.    }
  48.    function get fillalpha()
  49.    {
  50.       return this.fAlpha;
  51.    }
  52.    function get fillcolor()
  53.    {
  54.       return this.fColor;
  55.    }
  56. }
  57.