WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 12-02-2008, 06:42 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Thanks for the bug report, this will be fixed in the next release. If you need the fix sooner, then modify your vizmenu.py by replacing the setVisible function of the MenuBar class with the following code:
Code:
	def setVisible(self,visible,animate=True):
		"""Make the menu hidden or visible"""
		self.__hidden = not visible
		self.__root.clearActions()
		if self.__hidden:
			if animate:
				self.__root.runAction(vizact.moveTo(self.__inactivePos,speed=HIDING_ANIMATE_SPEED,p1=-0.5,p2=0.0))
			else:
				self.__root.translate(self.__inactivePos)
			#Clear tracked item and click state
			self.__clicked = False
			self.__trackitem(None)
		else:
			if animate:
				self.__root.runAction(vizact.goto(self.__activePos,VISIBLE_ANIMATE_SPEED))
			else:
				self.__root.translate(self.__activePos)
Reply With Quote
  #2  
Old 12-02-2008, 07:47 PM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
thanks for the speedy fix
__________________
Paul Elliott
WorldViz LLC
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Vizmenu slider bug? Gladsomebeast Vizard 2 10-22-2008 08:05 PM


All times are GMT -7. The time now is 01:09 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC