Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
I have attempted to create a group on a card which I mean to use as a template. However I could not get the clone command to work by script. Instead I had to use
...
repeat with i = 1 to 2
copy grp "bookingtime" of cd "template card" to this card//this is instead of "clone"
//position the group
set the top of it to (86 + x*120)
add 1 to x
set the left of it to 40
...
I am probably missing some better way of achieving this.