Why is my sound not working in Flash?
- by animuson
This is what I have as far as code, it is in the first frame of the movie.
nature = new Sound(this);
nature.attachSound("sound_naturally");
nature.setVolume(50);
nature.start(0,0);
nature.onSoundComplete = function(){
nature.start(0,0);
}
trace(nature);
The trace outputs '[object Object]' at runtime.
I have the sound exporting to…