monthTab1.tabText.text = "JULY";
monthTab1.tabText.selectable = false;
monthTab1.addEventListener(MouseEvent.MOUSE_OVER,changeTabColor);
monthTab1.addEventListener(MouseEvent.MOUSE_OVER,changeCursor);
function changeTabColor(e:MouseEvent):void {
monthTab1.tab..useHandCursor = true;
monthTab1.tab..buttonMode = true;
var c:ColorTransform = new ColorTransform();
c.color = 0x5E7E36;
monthTab1.tab.transform.colorTransform = c;
}
|