View Single Post
  #2  
Old 01-31-2005, 10:06 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Do you want the same box in different scenes? If so, try the following:
Code:
info = vizinfo.add(....)
#Duplicate the box onto scene 2
info._group.duplicate(2)
If you have an older version then try this instead:
Code:
info.group.duplicate(2)
I think you asked a question a few months ago about adding checkboxes and sliders to the vizinfo box. Version 2.5 of Vizard now allows you to do this, you might want to check it out.
Reply With Quote