Problem
You have a list of items that you want to rotate, moving items from the beginning of the list to the end or the end to the beginning. You might think of the list as circular.
Rotate a circular list
Solution
Use the Shift Into function, which does exactly that.
list = {"ape", "bat", "cow", "doe", "ewe", "fox", "gnu", "hog"};
Shift Into( list, 1 );
Show( list );
Shift Into( list, -2 );
Show( list );
Discussion
There is also a Shift function that does not modify the source list but returns a new list.
list = Shift ( list, -2 );
The above example should use Shift Into rather than Shift to avoid making extra copies of a list. But if you need a new copy, modified, and need to keep the original, unmodified, use Shift.
See Also
Check out the scripting index (Help->Script Index) and take a look at the Insert Into and Remove From functions as well.