@unknownuser said:

I don't know if I really understand your request, but here is my answer 😉
[attachment=0:6mcjm8ou]<!-- ia0 -->Distrib.skp<!-- ia0 -->[/attachment:6mcjm8ou]
There is a component in a component, you choose the number of sub component and you can stretch the mastercomponent along the red axes. The sub components will be placed at
X = Copy * (Master!LenX - LenX)/(Copies + 1)
You must fix the LenX of the sub component to avoid to transform them when you resize the master component.

I'm trying to do something similar to some of the typical fence direct components (DC's) that are floating around.

I have LenX of the subcomponent fixed, and the number of them is being determined by dividing the Master!LenX/LenX. Additionally, I'm trying to use the 'INT' math function to round-down the number of repeating SC's, to keep the total length of them to less than Master!LenX.

LenX is also the "spacing", as the sub-components are touching each other, so there is actually no space between them.

Thanks.