View Single Post
  #11  
Old 02-24-2006, 02:09 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

The problem is that you are calling node.remove(). This function will immediately delete the object. In this example you need to create an action that will remove the node. Use the following code instead:
Code:
fadeReset = vizact.sequence(vizact.waittime(5),vizact.call(node.remove))
The vizact.call action will simply call the function that you pass to it.
Reply With Quote