Hey everyone. Is it possible to fill an array with multiple items from text input?
EG: Textinput = a,b,c,d,e ( Seperated by commas )
Array values index 0=a , 1=b, 2=c etc.
Thanks !
Set array size to (0,1,1) Repeat tokencount(text, ",") times Array push back tokenat(text, loopindex, ",")
Develop games in your browser. Powerful, performant & highly capable.
> Set array size to (0,1,1) Repeat tokencount(text, ",") times Array push back tokenat(text, loopindex, ",")
Works great! Thank you. Attached an image for anyone that is struggling with it.