The issue I’m having is joining a list into a multi line text box with \n as the divider then splitting it back into the list after the user is done editing doesn’t split at \n if the text box wasn’t edited, resulting in one item that has \n in that item despite me splitting with \n as splitter, (another minor appearance issue is when \n is put in text box with set value depending on semi random circumstances, it doesn’t actually go to the new line, it just has a weird space), my current fix is the user can’t continue until they have made a change to the text box, it still works even if it’s just typing and letter and then deleting it so I just have it detect any change to the text box and then allow the option to continue.
I have tried using automation to type and delete a character and I am having difficulties getting the automation plugin to work, it may be that it can’t make a text box be selected in the project panel (using a pointer click so you’re now typing in it) and key press and key release can’t type in that panel, I try to click in a text box, (0 0 is inside the text box as it’s very big), type a letter, and delete it
PS: after testing it does appear that simulate key press (and probably key release) do only trigger the blocks which will probably be the same with simulate mouse press