_root. or _parent. or whatever?
I have this problem now.
I load an external file to my main mc. The file is a flash doc. It has buttons in a movie clip. Normally The code for the buttons is
on (release) {
loadMovie('8.png' , _root.box);
}
but the problem is. That the box instance is in the file. And when I use _root. it gets to the main document where it doesn't exist and i want it to stay that way.
I mean how to refer from a loaded file to the same loaded file not to the main one. Some kind of a path or something?