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: