I'm trying to make a 5x5 grid of text files to fit into a grid of squares. This should be simple enough but every step of the way I'm blocked by a lack of features.
I first put all possible texts into a listbox object. Then I created the text files with 2 loops and gave them unique values. This worked and displayed the text from the listbox properly but was not random.
I tried to find a way for the listbox to move its lines around but I can't find a way to move existing lines at all. Then, I tried to create a duplicate listbox object and insert lines from it into random indexes (Not that that would produce very much randomness). It didn't work, as if the index number exceeded the existing line number it ignored the action.
I then tried to skip the inserting, make 25 dummy lines, and then randomly rewrite those lines from the original listbox object. The only problem is there's no way to rewrite lines that I can find. "Set line data" doesn't seem to do anything.
There has got to be an easier way of doing this, but man I hate the listbox object...