Does anyboy know how to create a metronome for a song in a flash website??
well maybe if i knew what a metronme was. no wait…isnt that one of those ticker things or something?
just make a simple 1 second loop,and load into the movie through a script not by converting a layer to a sound layer.
something like this:
[AS]
//put this code in the first frame.
loop1 = new Sound(this);
loop1.attachSound(“Loop1”);
loop1.start(0, 99);
function callback() {
loop1.start(0, 99);
}
loop1.onSoundComplete = callback;
//don’t forget to export your sound for actionscript
[/AS]
this should do the trick:)