Can someone help translating the code below to AS2?
var clipArray:Array = [city1, city2, city3, city4];
for (var i:int = 0; i < clipArray.length; i++) {
clipArray*.buttonMode = true;
clipArray*.addEventListener(MouseEvent.CLICK, clickHandler);
}
function clickHandler(event:MouseEvent):void {
for (var i:int = 0; i < clipArray.length; i++) {
if (event.currentTarget == clipArray*) {
clipArray*.mouseEnabled = true;
clipArray*.alpha = 1;
} else {
clipArray*.mouseEnabled = false;
clipArray*.alpha = .5;