View Single Post
  #6  
Old 08-05-2009, 09:02 AM
GiudiceLab GiudiceLab is offline
Member
 
Join Date: May 2009
Location: Orono, ME
Posts: 49
I'm not sure if I understand exactly what you want to do, but if you first make the global list and then want to take all the balls out of it, you could:

Code:
for row in range(len(ballList)):
		ballList[row].remove()
which will cycle through your list and remove each item.

Or, you could just erase your list by re-initializing it (I think):
Code:
ballList = []
Reply With Quote