# Load movie problem

**URL:** https://forum.kirupa.com/t/load-movie-problem/170639
**Category:** Uncategorized
**Created:** [November 28, 2005, 12:59pm UTC](https://forum.kirupa.com/t/load-movie-problem/170639 "2005-11-28T12:59:50Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![g5604](https://avatars.discourse-cdn.com/v4/letter/g/54ee81/32.png) [@g5604](https://forum.kirupa.com/u/g5604)
#### Post date: [November 28, 2005, 12:59pm UTC](https://forum.kirupa.com/t/load-movie-problem/170639/1 "2005-11-28T12:59:50Z")

</div>

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;  
}  
};  
};
