Loading within an external movie

Example/

Movie1 loads external Movie2

Movie2 attaches the loading bar “loader”

Within loader there is a bar, that bar’s width depends on the var picPercent on the Movie2 timeline.

So I used

 
onClipEvent(enterframe){
     this._width = _root.picPercent;
}

now my problem is, it’s trying to get picPercent from _root, but it doesn’t move. Is that because it’s looking for picPercent from Movie1 and not Movie2 like I’d like?

Thanx if you can help.
:ne:

Hehe…can anyone help me?
Please?

I really need some help. Does anyone know what I need to do?

There are several ways to use pathing. Here’s one [AS]onClipEvent(enterframe){
this._width = _root.Movie1.Movie2.picPercent;
}[/AS]