AS3 scroll animation horiziontally
I am currently making an Ad that has a calendar at the top.

The arrows to the left and right currently only "tick" to the right and left. I would like it to glide/scroll through instead but I am lost on what to do...
I was hoping maybe I could get some help from someone out there in Forum land... I appreciate any help I can get. Thank you in advance! ![]()
//CURRENT CODE//
leftScroll.addEventListener(MouseEvent.CLICK, RIGHT);
function RIGHT(event:MouseEvent):void
{
if (scrollNumbers.x <= 28){
scrollNumbers.x += 20;
} else {
scrollNumbers.stop();
}
}
rightScroll.addEventListener(MouseEvent.CLICK, LEFT);
function LEFT(event:MouseEvent):void
{
if (scrollNumbers.x >= -255){
scrollNumbers.x -= 20;
} else {
scrollNumbers.stop();
}
}
