And here is yet ANOTHER way to remove items from an array… this method is by the actual value of the item and not the array position… (this may get confusing if multiple array positions contain the same values, the last added value in this case would be the one that gets deleted) [AS]myArray = [“var1”, “var2”, “var3”, “var4”, “var5”];
Array.prototype.removeItem = function(value) {
for (var i in this) {
if (this* == value) {
this.splice(i, 1);
break;
}
}
};
myArray.removeItem(“var2”);
trace(myArray);[/AS]
Ok sport, i’ve given many points in the right direction, now run run run like the wind and take it where you can.