I have a full moon I want to move slowly across the screen. However, something like…
private function MoveMoon(e:Event):void
{
if (!(++frameCounter % 500))
{
fullMoon.x += 1.0;
fullMoon.y -= 1.0;
}
}
provides “steppy” looking movement. Has anyone experimented with very slow movement…maybe something using masks with two Bitmaps of the full moon to work with? Or can something like GreenSock move images slowly without steppyness?