-
Hi,
In my Movie I have 2 other .swf loaded in fine.
The 3rd is the Menu which move complex and comtains a few diffrent Movie Clips.
At the frame I want it to be loaded I use
loadMovie ("menutest2.swf", "/loc")
The Menu loads up fine but when I put my mouse over a button a MC is ment to play, Flash just says
Target not found: Target="/ballsMC" Base="_level0.loc"
Anyone know how to fix this/
Thanks.
Andrew
-
When you're loading different .swfs into your movie, you want to make sure to avoid two things:
1. _level0 references. Replace them with _root unless you really want to refer to level0 even when your movie is loaded into level 1.
2. Absolute references. Replace _root.movie with _parent.movie when possible.
I don't know if this is your problem, but it's a good place to start.
em