class IMG_Loader_Blur extends IMG_Loader { var _blurriness, invalidate, __get__blurriness, get_parent_mc, get_easing_speed, get_easing_type, onEnterFrame, __set__blurriness; function IMG_Loader_Blur() { super(); } // End of the function function set blurriness(num) { _blurriness = num; this.invalidate(); //return (this.blurriness()); null; } // End of the function function get blurriness() { return (_blurriness); } // End of the function function prep_fx() { var _loc2 = new flash.filters.BlurFilter(this.__get__blurriness() * 2, this.__get__blurriness() * 2, 3); this.get_parent_mc().image_mc.c.filters = [_loc2]; } // End of the function function dsp_fx() { var current_num = 0; var blur = this.__get__blurriness() * 2; this.get_parent_mc().onEnterFrame = function () { var _loc3 = -blur; blur = this.get_easing_type()(current_num, blur, _loc3, this.get_easing_speed(), 1); var _loc2 = new flash.filters.BlurFilter(blur * 2, blur * 2, 1); this.get_parent_mc().image_mc.c.filters = [_loc2]; if (blur == 0) { delete this.onEnterFrame; } // end if ++current_num; }; } // End of the function var className = "IMG_Loader_Blur"; static var symbolOwner = IMG_Loader_Blur; static var symbolName = "IMG_Loader_Blur"; } // End of Class