First of all heres my project:
http://athene.riv.csu.edu.au/~jgalvi06/Comic/Soundcomic/
The big black smudges are buttons, so click the one to the right and the page should load.
My lil problem is that due to other effects I wanted to add I have sound linked within each of these seperate pages.
Each page has several panels, each of which plays a sound when the mouse rolls over it. This sound is played via a:
var snd1 = newsound();
snd1.attachSound(“the_sounds_name”);
SO each of these pages works fine by itself.
BUt I have made a “loader.swf” page where by clicking on buttons advances them timeline to another page that is loaded into an empty movie clip (“container”) using:
container.loadMovie(“page3.swf”);
SO now when I load this way, the sounds do not play.
Is there anyway around this besides going into each seperate panel movieclip and adding it to their timelines?
PLEASE?!