Problem with setInterval

hi,

i’ve got a proto, which work fine.
i want to play the proto on MCs , but with a little dealy each time…

so on the first MC, i put this code :


onClipEvent (load) {
	setInterval(ease, 500, 255.4, 0.25, 100, 0.1);
}

with “ease”=my proto,
“500” = delay
and “255.4, 0.25, 100, 0.1” : paramaters for my proto…

but it don’t work :frowning:

why ?