array key does not exist ...
Posted: Mon Mar 13, 2017 9:42 pm
The error message arises from the following LCB module and LCS script.
module:
script:
Is something missing above, or missing from my setup, or is it a bug?
module:
Code: Select all
library community.livecode.rkriesel.putInto2dArray
metadata title is "putInto2dArray"
metadata version is "0.0.1"
metadata author is "Dick Kriesel"
public handler putInto2dArray ( inout xArray as Array )
put "three" into xArray[ "one" ][ "two" ]
end handler
end library
Code: Select all
on mouseUp
local tArray
try
put "true" into tArray[ param(0) && "was here" ]
putInto2dArray tArray
catch tError
end try
breakpoint
end mouseUp