I got a problem with processing an array in actionScript. I removed the last element of an array through array.pop(); After that I would like to put this removed display-object back to the beginning of the array. (array.unshift(object)) The object is now the first element of the array but it got still its old label (number of the last element). Therefor I can't update the position(graphically) of the displayobject. Is it possible to "reindex" the array ?
Thanks a lot