Carousel style .. but arrow or button activates the rotation without using papervisio

I would like to have a carousel style menu that is activated by a next> button but not using papervision. In papervision i can just rotate the camera around the objects that are aligned in circular array. but without papervision i cant rotate a camera, i have to adjust the position of each object … i am struggling with this… anyone has an example or anything?

I can rotate the objects using enterframe method and calling this function, but how can i rotate only 30 degress or set ammount of degress across all objects…


	function spinner(e:Event):void{
		e.target.x = Math.cos(e.target.angle)* radiusX + centerX;
		e.target.y = Math.sin(e.target.angle)* radiusY + centerY;
		e.target.angle += speed;
	}

anyone?