Hi there...
I got a piece of actioncode to scale an image (big to small --> small to big) in a loop.
This is the "turning point" for the loop:
Code:
scaleX.onMotionFinished = function() {
this.yoyo();
};
Now I want to make a delay to this..
Code:
scaleX.onMotionFinished = function() {
setInterval(this.yoyo(), 2000);
};
But this isn't working. where did I go wrong?..
_j