I am wondering if there is anyway to pass a value with the function in an event listener function.
function finished(f_clip) {
trace("hit");
f_clip._visible = false;
}
one.addEventListener("complete", finished(one));
I have a couple FLV’s on the canvas and I’d like call ONE function when they are each finished playing, but have clip specific code executed.