Hi!
I would like to copy an element of a table array to another element like this:
Code: Select all
dim but[10]
but[1] = { off=1,
on= 2,
x= 100,
y= 100,
w= 59,
h= 46,
nr= 1
}
but[2]=but[1]
Is there a way to copy the contents of the table to another variable?