I’ve read some help on this, but can’t seem to get mine sorted.
I’ve just learned to use the loadmovie command and it works find for me when simply loading one swf into another, but adding a third has proved disasterous.
I have a movie called “p_staff.swf” and it has a list of buttons in it and some animation. When you hit the button “gareth” I want it to load “gareth.swf” into that swf - which it does happily enough if I test “p_staff.swf”, but when I want “p_staff.swf” into my main movie “mainf.swf” then it loads “p_staff” and if I click on “gareth” it just goes blank.
The code I’m using in “p_staff.swf” is:
loadMovie(“gareth.swf”,"_root.hold_gareth");
“hold_gareth” is my blank movie clip to load it into.
The code for mainf.swf is:
loadMovie(“p_staff.swf”,"_root.holderstaff_mc");
Any help would be appreciated.