Say I have 2 files (file a, file b) and I want to use file a to load file b (in a blank movie clip symbol). The problem is that file b has a preloader that uses _root.getBytesLoaded() & _root.getBytesTotal() in it.
These values, however, return the size of ‘file a’, what should I put in place of _.root (which is in ‘file b’) so that it returns the size of ‘file b’ even if I load it from somewhere else?
I found out that you can refer to instances of symbols of file a by using _root.someVariableName. So instead of having just _root, I needed _root.contents (contents is the instance name of my blank movie clip)