Targeting user-defined function?

I created a function that is called correctly when a combobox change() event occurs. Everything is fine in this movie, but when I load the movie (using loadMovie()) with a preloader, it breaks! I can’t call the function no matter what pathname I use (this._parent, this._parent._parent, _root., etc etc) It’s a relative path:

on(change) {
this._parent._parent.myfunc();
}

Everything should be exactly the same because of the relative target - but the function is not called when loadMovie() is used.

If this matters, the movie (not the preloader) has this._lockroot = true in it.

Any ideas? Thanks in advance.

Nevermind, I solved the problem.

The target path was correct - everything is as it should be regarding relative references. The problem was that my function was taking arguments which depended on the exact path…when I updated those, it worked fine :pa: