im currently making a logging tool for myself. So far, ive made it so it can create a list from data i have in a global array. i want to be able to add data to the list from within the app. but i dont see how to create a new child thats an array itself to the array from events. Is it a thing?
An array isn’t your best option as the child object - you should look at using a Structure. For one, that way you don’t have to rely on the value’s position to work out what it represents. You can use a name to save and access it (very handy for updating child values)
Thank you for your reply, whats the difference between the two of them? other than being able to name the children. Can a child still have a child and all thats still the same?