View Single Post
  #4  
Old 06-25-2008, 11:29 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Python supports nested loops. Here is a sample:
Code:
for x in range(5):
    for y in range(5):
        print x,y
I'm not sure how this relates to what you are trying to do. There are many ways you can detect consecutive keyboard presses in Vizard, however using nested loops is not related to it.
Reply With Quote