View Single Post
  #2  
Old 07-16-2007, 09:16 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

You can use the vizact.waittime action to insert a pause between actions. For example, if you wanted to have an action perform every 5 minutes, you would do the following:
Code:
ActionEvery5Min = vizact.sequence( MyAction, vizact.waittime(300), viz.FOREVER)
Reply With Quote