Forum Moderators: open
I don't know if you could give me an example. Say I have a movieclip in my scene and I want it to appear slower/faster at certain times how would I use setInterval to gain that effect?
basically you could use it something like
whateverclip_mc.onEnterframe=function() {
setInteval(parameters etc);
}
or call it from within an onPress button event.