Load multiple mc's but 1 preloader

Hello,

I have a preloader that loads a ‘big mc’, that loads little mc’s.

I had it working so that first preloader loaded ‘big mc’, but then ‘big mc’ had to load many ‘small mcs’.

So,
I want to load ‘small mcs’ into ‘big mc’ from first preloader.

make any sense?

Right now I can’t even get this to work
[AS]
loadMovie(“Main.swf”, _root.mainEmpty);
// this loads ‘big mc’

loadMovie(“Menu.swf”,_root.mainEmpty.Menu);
// this then loads a ‘small mc’ into ‘big mc’

[/AS]

I guess I can’t put these right next to each other?

I’m confusing myself, but if anyone can make sense of this, help is appreciated. :smirk:

edit:

I need to get my preloader to load a big mc and then small mc’s into it.

I would like to be able to have all mcs load at my initial preloader.

:ne: