TweenAlign.as 780 B

123456789101112131415161718192021
  1. /**
  2. * VERSION: 0.86
  3. * DATE: 6/15/2009
  4. * AS2 (AS3 version is also available)
  5. * UPDATES AND DOCUMENTATION AT: http://www.TweenLite.com
  6. **/
  7. package com.greensock {
  8. /**
  9. * Static constants for defining tween alignment.
  10. *
  11. * <b>Copyright 2010, GreenSock. All rights reserved.</b> This work is subject to the terms in <a href="http://www.greensock.com/terms_of_use.html">http://www.greensock.com/terms_of_use.html</a> or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.
  12. *
  13. * @author Jack Doyle, jack@greensock.com
  14. **/
  15. public class TweenAlign {
  16. public static const NORMAL:String = "normal";
  17. public static const SEQUENCE:String = "sequence";
  18. public static const START:String = "start";
  19. }
  20. }