Fl transitions and what not

Hi all, been having problems with flash, seems we cannot really understand each other.

I have this:

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

moveRight.addEventListener(MouseEvent.CLICK, tweenMyObject);

function tweenMyObject(event:MouseEvent) {

var myTween:Tween = new Tween(iconStar, "x", Strong.easeOut, 308, 500, 5, true);
var myTween1:Tween = new Tween(iconCake, "x", Strong.easeOut, 123, 308, 5, true);
var myTween2:Tween = new Tween(iconStar1, "x", Strong.easeOut, -1174, -123, 5, true);

}

Can I -by pressing the same button- have the objects keep moving horizontally and constantly rotating back the beginning of the page sort of like a 2d carousel but with arrows?

Plus everytime I press the button (moveRight) can some other symbol that I have appear somewhere on the stage?

I hope this makes sense.