
and regards to the untiring Team

and not to forget all those fearless beta-testers

cheers ~ Vera
May I kiss you now? Most awesome feature addition ever! Thank you!!!freak wrote:Support for Array, List and Map in structures
Code: Select all
Structure Test
Array A.i(1)
List B.i()
Map C.i()
EndStructure
Define Blah.Test
Dim Blah\A.i(2)
; fill it
Blah\A(0) = 0
Blah\A(1) = 1
; NewList Blah\B()
AddElement(Blah\B())
Blah\B() = 2
AddElement(Blah\B())
Blah\B() = 3
; NewMap Blah\C()
AddMapElement(Blah\C(), "BAADF00D")
Blah\C() = 4
AddMapElement(Blah\C(), "DEADBEEF")
Blah\C() = 5
; read it
Debug Blah\A(0)
Debug Blah\A(1)
ForEach Blah\B()
Debug Blah\B()
Next
Debug Blah\C("BAADF00D")
Debug Blah\C("DEADBEEF")
- Added volume support to PlaySournd()
Seems to be a little bug with ForEach. ResetList, NextElement works fine.It stops inside the ForEach because of an Invalid Memory Access.