home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / states / Transition.as < prev   
Encoding:
Text File  |  2008-09-02  |  517 b   |  28 lines

  1. package mx.states
  2. {
  3.    import mx.core.mx_internal;
  4.    import mx.effects.Effect;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class Transition
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "2.0.1.0";
  12.        
  13.       
  14.       public var effect:Effect;
  15.       
  16.       public var toState:String = "*";
  17.       
  18.       public var fromState:String = "*";
  19.       
  20.       public function Transition()
  21.       {
  22.          fromState = "*";
  23.          toState = "*";
  24.          super();
  25.       }
  26.    }
  27. }
  28.