Today we made a simple text animation in Adobe After Effects. Then rendered it as a PNG sequence. Then placed it into a movie clip in a flash file. The entire sequence was imported and, after learning some new code.
onEnterFrame = function () {
if (nope.hitTest(_xmouse, _ymouse, true)) {
nope.nextFrame();
}else{
nope.prevFrame();
}
};
We created a roll over button also, which reverses if the mouse is not over the movie clip.