What I have are two MovieClips that I wish to move around the screen (one horizontally and the other vertically) my ideal scenario would be an android type animation like this...
TranslateAnimation moveDown;
if (isMainGuiVisible)
{
moveDown = new TranslateAnimation(0, 0, 0, 150);
}
else
{
moveDown = new TranslateAnimation(0, 0, 150, 0);
}
moveDown.setDuration(time);
moveDown.setFillAfter(true);
frmMainGUI_mc.startAnimation(moveDown);
Where it's doing this...
moveDown = new TranslateAnimation (fromXDelta, toXDelta, fromYDelta, toYDelta)
Edit: I basically need a way to animate a MovieClip moving off and on screen in the direction I tell it to. If that is like above where I'm telling it to move back and forth by 150 pixels that moves it off and on screen or some other way...