Hi flasheads. I have an interface that has a button that loads a swf of an infinite menu. When I try and load it into a movie clip it won’t work. It won’t scroll. When I load it into a level it works but I need to load it into a movie clip. If you have any insight please tell me. thanks group.
I’m not positive without your code but to me it seems most likely that theres a stop action somewhere. Either in your external swf or in your mc is, check both inside your mc and on the main timeline of both external and main movie.
there are 2 .flas. one is kind of big sorry. I really can’t figure it out. hopefully it is some really easy overlooked thing. thanks a lot. – _root.brian
The main problem you were encountering, was with how you were addressing things in the x.fla file. You kept saying “_root.whatever”. When that swf is loaded into your main movie, it now is not on the root level. When using ‘loaded’ clips into a “holder” mc, the best thing to do is to refrence things in that loaded movie as “_parent.whatever” rather then “_root.whatever”. You also had a few other details that needed to be fixed. Some syntax issues, lack of ending points for lines of code (";") . I cleaned it all up for ya.
hey thanks a billion Danno. that was the cause of so much stress. I never even thought that that could be the problem but in retrospect now I see. you are a flash genius. thanks once more
Definitly not am I a flash genious. I just had the exact frustration that you were having countless times, until I looked further into what _root and _parent meant & how to use them properly.