Flash help please!
Flash help please!
Out of context: Reply #2
- Started
- Last post
- 4 Responses
- unfittoprint0
make two animations (one after another). a constant velocity (the first), then the whole thing slowing down to a halt.
in the frame dividing the two animations put an action like:
//n = desired number of loops
if(count==n ){
gotoAndPlay(_currentframe+1)
}else{
++count
gotoAndPlay(1)
}