View Single Post
  #2  
Old 05-24-2007, 02:45 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Try adding the audio object after you add all your models. If that doesn't work, then create a timer event to initialize the audio for the first time. Here is sample code:
Code:
def InitializeSound():
	#Add code to initialize audio objects
	pass
vizact.ontimer2(0,0,InitializeSound)
Reply With Quote