Excellent example. This is exactly what I want but I am not sure how to split the same movieclip into two. I think its better if you can show me the source.
S I am assuming 'coffeeCup' is the movieclip. In my case its tmp_mc.
frames = new Array(preview, live); (what is frames ? - its the container but is it the flash frame?)
Code:
createBtn.onRelease = function() {
for (i=0;i<frames.length;i++) {
//trace("itsyBitsy");
frames[i].tmp_mc.scaleTo(20, .5, "easeOutQuad");
}
}
Am I doing the right thing?
Thank you !