Skip to main content
Participant
November 11, 2016
Question

Shaky Circle

  • November 11, 2016
  • 2 replies
  • 347 views

Hi, I'm trying to spin a circle using Adobe Animate cc. But the circle is very wobbly. I've tried reducing the keyframe, removing effects and changing the degree. Nothing worked. How can I fix this?

This topic has been closed for replies.

2 replies

Legend
November 11, 2016

Either the circle isn't perfectly round, or it isn't perfectly centered on its rotation point. Or both.

Colin Holgate
Inspiring
November 11, 2016

How good rotations look is dependent on the stage quality, which defaults to medium. You can set it to be higher, assuming you're using an ActionScript FLA and not HTML5, by adding this code to the first frame in the timeline:

stage.quality = "high";

or:

stage.quality = "best";

Participant
November 11, 2016

I'm currently using HTML5 canvas. Won't it work properly in this?

Colin Holgate
Inspiring
November 11, 2016

I don't know if there is a way.

What is the end goal for the animation? Will it be a video file? If so, you'll need to use AS3 FLA for other reasons.

You could do a test of the idea with AS3, to see if the stage quality does solve the problem.