WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 08-25-2016, 09:42 AM
Eugene Eugene is offline
Member
 
Join Date: Jun 2016
Posts: 6
Disable Clicking of Button

I've created a system status panel using buttons and would like to prevent the subject from accidentally clicking on the buttons. Currently, when I click on the 'Normal' button, it becomes unshaded.

May I know how could I disable the ability for someone to click it without causing the button to be gray-out.

import viz
import vizdlg

viz.go()

SystemIndicatorPanel = vizdlg.Panel()

SystemNormalButton = viz.addButtonLabel('NORMAL')
SystemNormalButton.set(1)
SystemErrorButton = viz.addButtonLabel('ERROR')
SystemErrorButton.set(0)
SystemIndicatorText = viz.addText('Overall System State')

SystemIndicatorPanel.addItem(SystemIndicatorText)
SystemIndicatorPanel.addItem(SystemNormalButton)
SystemIndicatorPanel.addItem(SystemErrorButton)

viz.link(viz.CenterTop,SystemIndicatorPanel,offset =(-150,-50,0))
Reply With Quote
  #2  
Old 08-26-2016, 07:53 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Are you saying you don't want to disable the button using the following and then later enable it?

Code:
SystemNormalButton.disable()
If so, then you would have to handle the button event and set the button state back to it's initial state.
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
How to map HTML button to Transport in Vizconnect JB_HP_Viz Vizard 3 02-24-2015 07:38 PM
A door question... left button mouse Sakiot Vizard 3 08-26-2011 12:45 AM
Create Button or Text Chrissy2009 Vizard 1 07-15-2009 05:34 PM
button events when drawing over gui elements moooh Vizard 2 04-10-2009 01:01 AM
button problems cade_mccall Vizard 3 02-22-2007 09:48 AM


All times are GMT -7. The time now is 06:45 PM.


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