I want to use the array element as an alias reference in Lianja / VFP commands
In VFP the form &aRy[1,1] can be used, in Lianja the (aRy[1,1]) .
but as long as it is possible to use &aRy[1,1] -> FIELD or &aRy[1,1]..FIELD in VFP, I can't find a working solution in Lianja

(aRy[1,1]).FIELD
(aRy[1,1]) -> FIELD
(aRy[1,1] -> FIELD)
&(aRy[1,1]).FIELD
&(aRy[1,1])->FIELD

????