items added to the 'my things' section and made into dragable items were remaining on the screen when you moved away from that page.
It was not possible to reference the name of the item that was added as a child of the stage because all references to it (including the variables) had to remain within the function in order that each item in the array was added to a new sprite and made dragable independent of the other options.
I tried various options for removing the child but had lots of errors. A set of traces helped identify the position of the items in the display list and I used 'removeChildAt ' to reference the object directly. I put this within a loop so that as more objects are added to the array the code will automatically cope with removing more items.
The last error to overcome related to the changing position. Initially I used removeChildAt (6+i) because the first item was always at 6, then the rest followed. But as one item is removed the others move further up the list, therefore an item at 7 will move to be item 6 if the previous item 6 is removed. Therefore the final code that worked is
this may change if more elements are added to the screen so I will keep an eye on this.