topical media & game development

talk show tell print

lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier.ax

lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier.ax (swf ) [ flash ] flex


  package caurina.transitions {
  
          
@ax-lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier A special property which actually acts on other properties @author Zeh Fernando @version 1.0.0 @private

  
  
          public class @ax-lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier {
  
                  public var modifyValues:Function;
                  public var getValue:Function;
  
                  
Builds a new special property modifier object. @param p_modifyFunction Function Function that returns the modifider parameters.

  
                  public function @ax-lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier (p_modifyFunction:Function, p_getFunction:Function) {
                          modifyValues = p_modifyFunction;
                          getValue = p_getFunction;
                  }
  
          
Converts the instance to a string that can be used when trace()ing the object

  
          public function toString():String {
                  var value:String = "";
                  value += "[@ax-lib-flex-animation-code-10-caurina-transitions-SpecialPropertyModifier ";
                  value += "modifyValues:"+String(modifyValues);
                  value += ", ";
                  value += "getValue:"+String(getValue);
                  value += "]";
                  return value;
          }
  
          }
  
  }
  


(C) Æliens 18/6/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.