End to Begining (Type)

Blitz3D Forums/Blitz3D Beginners Area/End to Begining (Type)

Jokkeri(Posted 2005) [#1]
How can I exchange the type execute from end to begining?

Begining to end:

for Type.Types = each Types
;do something
next

End to begining:

for Type.Types = ??????
;do something
next


Jake L.(Posted 2005) [#2]
myType=last Types
while myType<>null
; do something
myType=before myType
Wend

Other commands that could be useful: First, After

You can even sort them:

insert myType before anothertype


Jokkeri(Posted 2005) [#3]
That works. Thank you!

-Jouko-