Curious if there is another option to using a massive number of sub-events.
Import 150 items into an array via AJAX, then want to order them. (this is for a chat screen that allows for sprites etc to be inserted/created in chat log)
Currently:
Event...Function - On "X"
Sub-Event...Array - value.at(0)=xyz then create textbox at (1,1)
Action...set textbox width 500, set textbox height to textbox.height (allows grow/shrink textbox height to match text)
Sub-Sub Event...Array - value.at(1)=abc then create textbox at (1,textbox.height+10) (allows next textbox to be created just below the first textbox)
The problem is the last sub-sub event will be 148 recessed (bad wording probably, indented?).
Just curious if anyone has a thought on a better solution...if not no worries, this does work it just looks ugly and is hard to follow.
Thanks