How can I easily repeat this command so it works for the Y-axis the same way as it does for the X-axis?
I want a 9x9 grid of the same square object.
u can do that by using (For "") system loop expression.
And u do them like this
start of layout
--sub--for "x" from 0 to 2
----sub---for "y"from 0 to 2 :Action
Action is on the y sub that is under x sub that is under start of layout:
create block at
x= block.Width/1.2 + loopindex("x") * (block.Width + block.Width/2)
y= block.Width/1.2 + loopindex("y") * (block.Width + block.Width/2)
that should create a 9x9 grid.