@d-healey brilliant! again without you and your videos I'd be nothing!
this is what I came up with in the end:
const var Grid1 = Content.getComponent("Grid1");
Grid1.setPaintRoutine(function(g)
{
drawPandelGrid();
});
inline function drawPandelGrid()
{
local a = this.getLocalBounds(0);
local spacer = a[3]/10;
//g.fillAll(this.get("bgColour"));
g.setColour(Colours.withAlpha(Colours.white, 0.1));
for (i=0;i<=10;i++)
{
local y = i * spacer;
g.fillRect([0,y,a[2],2]);
}
}
and it gives a nice panel of lines to go behind my faders
Screenshot 2025-01-05 at 15.28.21.png