I have 3 arrays (same name) which need to start off with identical contents. I've made the contents in array 0 and need to copy it into arrays 1 and 2. Each array has the same name and a variable to identify it (I know you can do array(0) in some situations but it doesn't work in all, so I'm using a variable).
What I'm trying is, after Array 0 is full...
Array : Variable = 0 - Webstorage : Set local key ("savedarray") to Array.AsJSON
Array : Variable = 1 - Array : Load from JSON string Webstorage.Localvalue("savedarray")
Same for array 2.
It's not copying across at all. Any ideas why?