View Single Post
  #11  
Old 04-11-2009, 06:55 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The error is in this line
Code:
vizact.ontimer2(wait, 0, reset(object[x]))
You need to pass the argument to your function like this
Code:
vizact.ontimer2(wait, 0, reset, object[x])
Reply With Quote