Ive been playing with this code i found online,
Stage.scaleMode = "noScale";
this.createEmptyMovieClip("centerPoint", depth++);
centerPoint._x = sectionContainer.section1._x;
centerPoint._y = sectionContainer.section1._y;
var paddingX = sectionContainer._x;
var paddingY = sectionContainer._y;
function easeTo(sectionNumber) {
var sX = sectionContainer[sectionNumber]._x;
var sY = sectionContainer[sectionNumber]._y;
var endX = centerPoint._x-sX+paddingX;
var endY = centerPoint._y-sY+paddingY;
sectionContainer.onEnterFrame = function() {
this._x += (endX-this._x)/12;
this._y += (endY-this._y)/12;
};
}
for (var i = 1; i<=9; i++) {
this["button"+i].goSection = "section"+i;
this["button"+i].onRelease = function() {
easeTo(this.goSection);
};
}
but I was wondering how I could add some motion blur filtering to it so, it looked more dynamic when it moved between the eases. Is this easy of not? Ive been looking at Inan Olcer’s motion blur code - http://www.inanyus.com/2005/09/flash-8-motion-blur-actionscript2 - but to no avail.
so, any ideas please??
thanks