Hello all.
I converted a short (96 frame) animation from QT to FLV format and I’m able to instance this onto the stage.
How do you infinitely loop the animation? It executes through one iteration, and then stops.
package com {
import flash.display.MovieClip;
import Animation_movie;
public class Animation extends MovieClip {
var mc1:Animation_movie = new Animation_movie();
public function Animation() {
addChild(mc1);
mc1.x=260;
mc1.y=200;
mc1.width=220;
mc1.height=200;
}
}
}
Many thanks!!