Hi
I hope this isn’t a ridiculously obvious query but it’s causing me endless frustration to solve.
I have a movie - “main.swf” which is essentially the interface for the website, thus it sits at level_0. In this movie are some buttons which load external swfs into main.swf. They have the following actionscript:
on (press) {
section = “audio.swf”;
loadMovieNum(section, 3);
}
where the variable section is the name of the swf to be loaded. These movies are loaded into level 3.
On of these movies is an audio player which contains further buttons that load another swf onto the main timeline (NOT into a mc). They have this code:
on (release) {
loadMovieNum(“theme-song.swf”, 1);
}
All the swfs sit in the same directory.
However, I am having trouble with the path in the buttons in the audio.swf and nothing is loading when audio.swf calls “theme-song.swf” from the timeline of main.swf.
I hope that makes sense. Can someone just point out the correct path and syntax?
Thanks very much indeed.