I am having trouble controlling sound instance on the main timeline from with a movieclip.
On the main timeline contains the following code:
root.createEmptyMovieClip(“beat_mc”, 100);
beat = new Sound(“beat_mc”);
beat.attachSound(“beat”);
beat.start(0,9999);
beat.setVolume(10);
On that timeline contains a movieclip that I’m calling “jukebox”. In jukebox’s first frame contains the following code:
beat.setVolume(100);
The main timeline will render the sound at the volume 10 value. However, I anticipated the volume to be set at a 100 from the Jukebox’s controller.
It would seem logical that the jukebox code should respond to the instance “beat”, but it doesn’t. Does anyone have any tips on how to deal with this?
Thanks.