Ok so I got a 1D array which looks like this
[ ][ ][ ][N]
For every X seconds I want the N to move one to the left and when it comes "off" the edge it is gone from the array.
So it would look like this:
[ ][ ][ ][N]
[ ][ ][N][ ]
[ ][N][ ][ ]
[N][ ][ ][ ]
[ ][ ][ ][ ]
[ ][ ][ ][ ]...
Anyone got an idea on how to do this? I would be very happy for any help.
<font size="1">Edit:</font>
<font size="2">Would like a .capx example</font>