| View previous topic :: View next topic |
Daniel
26, Austin, TX
Posts: 4695
|
|
|
Posted: Fri Sep 01, 06 1:31 pm |
|
|
Ok, so I'm working on this project, and I've hit a brick wall. I have a stage, and on this stage I have a blank movie clip attached called "controller". I want to load into controller another flash file called library.swf, a file that holds all my graphic files. Trick is, as soon as I do a loadMovie into controller:
| Code: | | _root.controller.loadMovie("library.swf"); |
Everything under controller won't attach objects from the _root movie library.
| Code: | | controller.attachMovie("mouse", "mouse", 200000); |
Where mouse is in the _root movie's library, controller doesn't find it in it's library. Can I link to the _root library out of controller?
|
John Hudlow
27, Irving, TX
Posts: 2245
|
|
|
Posted: Fri Sep 01, 06 2:30 pm |
|
|
Hm. I sure wish I could help there, but I don't think I've ever used the loadMovie() function. Sorry...
|
|
|