PDA

View Full Version : Help with setInterval!



Inflicted
December 22nd, 2003, 02:55 PM
I got this MC I load. How could I put a setInterval function in front of it?


onClipEvent (load) {
this._x = 100;
this._y = 400;
}
onClipEvent (enterFrame) {
if (this._y>300) {
this._y -= 5;
}
}

And what if I wanted to do this with several MC's in the same movie?

senocular
December 22nd, 2003, 03:03 PM
in front of what? ... for what?

Inflicted
December 22nd, 2003, 03:14 PM
Ehmmm...

I want to make a movie where a couple of MC's are loaded into.
I want those MC's to load on different...intervals?
So they appear one after the other.

Looking for a way to take my Flash designs to a higher level...

thanks