animated blur html5
Hello,
I'm trying to animate a the createJS blur filter but, so far, without success 😞
here is my fla :
https://www114.zippyshare.com/v/V5m0z67k/file.html
and this is the bit of code I'm using:
var myBlur = new createjs.BlurFilter(25, 25, 1),
nb = this.mario_mc_1.nominalBounds;
this.mario_mc_1.filters = [myBlur];
this.mario_mc_1.cache(nb.x, nb.y, nb.width, nb.height);
this.timeline.addTween(cjs.Tween.get(myBlur).to({blurX:0, blurY:0},25).wait(1));I'm aware that the filter only works on a http server. So I used servez (from greggman).
The blur works... But not the animation. As can be seen here:
https://banner-testing.neocities.org/
Can anybody help me unblur Mario?
Cheers
