Is there a way to change a line in a list box to some new Text?
All I see is "Set Line Data" which does not do this.
So Line 2 reads "Hot" and I can make Line 2 Read "Cold"
Thanks
Develop games in your browser. Powerful, performant & highly capable.
You can do it by deleting line 2 then inserting at line 2.
-> ListBox: Delete line 2
-> ListBox: Insert line "Cold" at line 2
+ System: Start of layout
-> ListBox: Add line "hot"
+ Button: On Button clicked
-> ListBox: Delete line 1
-> ListBox: Add line "cold"
example