I was just thinking. Is there an eqivelent for making an <before item <thing>> and an <after item<thing>> on a list?
Offline
Make a variable called "current".
Item before and after (you'll need to run through the whole list):
Item (current-1) of list
Item (current+1) of list
Offline
juststickman wrote:
Make a variable called "current".
Item before and after (you'll need to run through the whole list):
Item (current-1) of list
Item (current+1) of list
What if the thing in the list is at a random location?
Offline
That's why you need a:
Set current to 0
Repeat (length of (list))
<[change current by (1)]?
<Do soemthing>
Offline
Still doesn't seem to work. Oh well never mind.
Offline