Hi,
i have a xml menu… which works great until its loaded into another movie. the part that break is the scrolling of the menu. any ideas why. heres the code for the scrolling.
i have tried locking the root.
// easing display and playlist movement
MovieClip.prototype.easeY = function(t) {
this.onEnterFrame = function() {
this._y = int(t-(t-this._y)/1.5);
if (this._y>t-1 && this._y<t+1) {
delete this.onEnterFrame;
}
};
};