Tlist

BlitzMax Forums/BlitzMax Beginners Area/Tlist

ssdw(Posted 2011) [#1]
hello everyone,

it is surely a dumb question, I work with Tlist.
I know how I get the whole list(with EachIn),but I only want one.
For example, the fifth of the list.
does anyone know how to do it?

And does anyone know how I can change something in the list?
For example, the third of the list is "A" but must be changed to "B"

Thank You


GfK(Posted 2011) [#2]
t:myType = myType(myTList.ValueAtIndex(5))
t.whatever = "B"



ssdw(Posted 2011) [#3]
thanks Gfk