Hi guys,
I’m doing a shape tween,
Ive traced the 2 bitmaps, [Modify>BitMap>TraceBitmap ] The shape tween works well in the development environmnet,
But when I test in the pop up [Ctrl + Ent] - I dont see all the transitions in between, i just see the last image…[not even the first image] why?
Any ideas what the problem could be…?
Its driving me crazy…
I’m using AS3,
I have the following AS in my first frame
function wait() {
stop();
var myInterval = setInterval(function ()
{ play();
clearInterval(myInterval); }, 3000);
}
wait();
and the last frame has the following AS
stop();
Thanks for your thoughts in advance.