Smoother frame generator?

Create a circle in frame 1.
Move the circle in frame 2.

Any program for Flash5 or function in flash 5 that generate a picture between frame 1 and frame 2. then move away frame 2 picture to frame 3 and the generated picture in frame 2. So this will have a smooth animation.

Does any program does this or have the simliar outcome but difference method?

(Hmm, please dont ask me to use “montion-tween” because this is a example. If i use montion tween in my animation, it seems to be more complicated to be done, Thanks.) (^_^)

Thats impossible I think you’d be better off using Motion tween I know I’m annoying you.

I don’t understand what you’re trying to do. Are you trying to motion tween with actionscript? (possible)

can you tell me more? Maybe you have the idea.

I think <b><u><a href=“http://www.philterdesign.com/tutorials/tutorial01.html”">this</a></u></b> is what your looking for.

Something like this. But however, it is not a generator. tHANKS ANYWAY, it is useful to me.

I dont understand why you would want to generate the path of an object, frame by frame. This method would be extremely processor intensive. If you want to make your movies smoother I suggest increasing your fps. To keep everything running at the same speed just adjust the length of the motion tween to be proportional to your increased fps.:thumb:

Because i did not use motion tween. As i said in the first post, montion tween made my animation more complicated to be done. So i need a generator or a software to do this.

well at least you know how to get it done compared to a generator where you dont know where to start

I had done an animation frame by frame. But the movement is not quite good. SO i need a generator.

If you mean chnging the Frames per second heres a code to change it.

function doeverything(){
// put all of your functions in here
// similar to on enterframe
// this will occur every virtual frame
}

function changefps(fps){
clearInterval(framerate)
rate = Math.round(1000/fps)
framerate = setInterval(doeverything, rate)
}

just call the fuctinon changefps to change the virtual fps.

finally, set the actual frame rate to 100, so that a wide range of virtal rates are possible

Can you tell me where to put it and how it works? Because i never use actionscript before.