home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 April / ME_04_2012.iso / Video-Tutorial / iPhoto / media / player.swf / scripts / mx / effects / WipeRight.as < prev    next >
Encoding:
Text File  |  2011-11-11  |  429 b   |  20 lines

  1. package mx.effects
  2. {
  3.    import mx.core.mx_internal;
  4.    import mx.effects.effectClasses.WipeRightInstance;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class WipeRight extends MaskEffect
  9.    {
  10.       mx_internal static const VERSION:String = "4.5.0.20967";
  11.       
  12.       public function WipeRight(param1:Object = null)
  13.       {
  14.          super(param1);
  15.          instanceClass = WipeRightInstance;
  16.       }
  17.    }
  18. }
  19.  
  20.