Blurfilter Issue/Alternative
Hi Everyone,
Below is a sample flash cover flow you can download for free from this link.
http://www.weberdesignlabs.com/blog/?p=11
I'm using CS4, and using the Device Central Simulator to test the code.
Blurfilter seems to be only compatible with Flash Lite 3.1, but is there a way I could implement it in Flash Lite 2.1?
Is there an alternative to Blurfilter in Flash Lite 2.1?
Below is part of the source code, this is the error I get. I want to be able to get the same/similiar effect in Flash Lite 2.1.
---------
The class or interface 'BlurFilter' could not be loaded.
---------
Thanks for your help everyone!:D
// "The Elevator Door 2"
for (var i :Number; i <= infostruc.length;i++){
var cArt:MovieClip = this.createEmptyMovieClip("art" + this.getNextHighestDepth(), this.getNextHighestDepth());
var rArt:MovieClip = this.createEmptyMovieClip("reflection" + (this.getNextHighestDepth() - 1), this.getNextHighestDepth());
rArt.id = cArt.id = rArt.cid = cArt.cid = Number(i) + 1;
cArt.DistortImage(this["_bmd" + cArt.id]);
controlTheObject(cArt);
rArt.DistortImage(this["_ref" + cArt.id]);
controlTheObject(rArt);
var tmpFilter:BlurFilter = new BlurFilter(reflectionBlurX, reflectionBlurY, reflectionQuality); rArt.filterArray = [];
rArt.filterArray.push(tmpFilter);
rArt.filters = rArt.filterArray;
}
myMO.onMouseWheel = function(delta:Number):Void {
if (delta > 0) {
next();
} else if (delta <= 0) {
previous();
}
};