
Code: Select all
Structure secondstruct_
name.s
EndStructure
Structure test_
array.secondstruct_[4]
primitive.l
EndStructure
test.test_
test\array[0]\name = "Hello"
test\primitive = 0
; This works
workaround.l = test\primitive
output.s = test\array[workaround]\name
; This does not
output.s = test\array[test\primitive]\name
I'm guessing it is getting baffled by the number of \'s in the line but I think it should work.
Finally - Hello to all on the board! I hope eventually I can offer some help to someone else once I develop some degree of skill, but don't hold your breath
