ID:272680
 
How do I for example, output something to column 1, row 6 without anything existing in the rows before 6 ?

I tried but failed miserably.

//attempt

src << output("test","grid:1,6") // won't show up anything

// and yes, grid is the actual name I gave it for testing.
Did you try forcing the size of the grid to include the 6th row?
winset(src,"grid","cells=1x6") // Forces the grid to have a 1 column x 6 row grid
In response to GhostAnime
Works, thanks. It'd be cool to be able to do that at the options. (if it is right now, I don't know how o_O)

Any idea on how I can make the cells have bigger height? (without increasing the size of what's inside them)
In response to Andre-g1
If you edit the grid element in the DMF, in the options tab, you can specify a specific column/row.

And I do not know how to increase the height of a cell
In response to GhostAnime
Hum, thanks.

Also, have you messed around with the span parameter ? It merges cells.

However, for example if I merge cell 2 and 3 of column one(rows 2 and 3 respectively). Would I still access that cell if I used winset() for row 3 ? Or would that merged cell count as only one row(row2) ?

o_O I'll try and test it. If you know and post in the meanwhile, thanks.