I want to scroll forwards and through an arrayList every time I press the ">" key. I can do this no problem but the problem is when I reach the end of the arrayList. When I reach the end, I want to go back to the front. This sounds confusing but really the concept is simple. For example, let's say we are displaying the arrayList slots 1,2,3,4 of an arrayList size 5. When I press the key ">" I want to display the slots 0,1,2,3. When I press the key ">" again, I want to display slots 1,2,3,4. Hopefully this example clears things up.
