Dynamic Array difficulties.
Do I have to re-label a dynamic array every time I enter a new frame? Because it certainly doesn't seem like it's retaining the labels I give it otherwise.
Currently I'm trying to test this by simply placing a string object in the frame and setting the alterable string of the object to the label of "Column 1" of the dynamic array.
Now, if I label column 1 within the frame containing this test string, it works and the string displays the label correctly.
However, if I label column 1 in the previous frame, then move into the frame containing the test string, the application crashes. It doesn't even show me the frame containing the test string; it completely refuses to work.
What's going on?
Re: Dynamic Array difficulties.
I wonder if you can make it a global object? I don't know...
Re: Dynamic Array difficulties.
It does say in the documentation that it has all the features of the Global Array. There isn't actually an option to make the Dynamic Array object global anywhere, but given this sentence, I'd assumed that you didn't have to and they'd automatically be considered global.
Regardless, though, even if the label isn't transferring between frames, that shouldn't make the application crash. It should just return a blank string.