Oh great, odd it's hidden away in steam like that?
So I have answered my questions so it looks like ill need to make changes to the way I work or create some work around and custom functions to emulate the functionality I want.
Why doesn't the below work to resize the array, I have look at examples and it should work, is it cus the demo is an old build 2017.02.28?
// set window properties
SetWindowTitle( "test" )
SetWindowSize( 640, 480, 0 )
myMap as Map
Message(str(myMap.value.length)) // Should return 2 - it does
DefMap(myMap,10)
Message(str(myMap.value.length)) // Should return 10 - it returns 2
do
Sync()
loop
Type Map
key as String
value as string[2]
Endtype
Function DefMap(a as Map,l as integer)
a.value.length = l
Endfunction