flash tizzy
flash tizzy
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- unknown0
this is what i have on my MC on frame 1
onClipEvent (load)
{
var ease = .15;
var width = 500;
var height = 20;
_width = 0;
_height = 20;
}
onClipEvent(enterFrame){
_width += (width-_width)*ease;
_height += (height-_height)*ease;
if(this._width >= width )
{
_root.gotoAndPlay(next);
}
}not working. the movie is two frames long. it just loops without giving anytime for animation.