YTextField.as 310 B

1234567891011121314151617
  1. package elements.axis {
  2. import flash.text.TextField;
  3. public class YTextField extends TextField {
  4. public var y_val:Number;
  5. //
  6. // mini class to hold the y value of the
  7. // Y Axis label (so we can position it later )
  8. //
  9. public function YTextField() {
  10. super();
  11. this.y_val = 0;
  12. }
  13. }
  14. }