
February 24th, 2003, 10:50 AM
|
|
flash junkie
|
|
Join Date: Jan 2003
Location: CO, USA
Posts: 172
Time spent in forums: 5 m 38 sec
Reputation Power: 11
|
|
well, probably the easiest way to do it is to just set up an onEnterFrame function, looking at the position of the sound.:
PHP Code:
this.onEnterFrame = function(){
if(mySound.position>2000){
//play one movieclip
}
if(mySound.position>5000){
//play another movieclip
}
mySound.onSoundComplete = function(){
delete this.onEnterFrame;
}
}
it would take up some resources with the onEnterFrame... but it's probably the easiest method.
cheers,
bret
|