#1
|
|||
|
|||
Using Window Buttons
I have been trying to activate and deactivate the mouse (while inside a vizard screen) in a timed fashion which are taking place very well. I am using the following codes:
#Turn off mouse navigation. viz.mouse.setOverride(viz.ON) #Hide the mouse cursor viz.mouse.setVisible(viz.OFF) But, the mouse operates for the window menu options (say Maximize, Minimize and Close buttons on the right hand top corner of the screen). Actually, I want my user not to be allowed any control (say maximize, minimize and Close of the window screen of the application running) in using these three options. Thanks in advance for the valuable suggestion. Uttama |
#2
|
|||
|
|||
You can completely hide the window border and controls using the following command:
Code:
viz.window.setBorder(viz.BORDER_NONE) |
#3
|
|||
|
|||
Using Window buttons
Great! It works out very well. I am also using the following code to bring it back.
#Unide the window Border (standard border with resizing allowed) viz.window.setBorder(viz.BORDER_RESIZE) Thanks Uttama |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Full screen window changes to small window | tacbob | Vizard | 1 | 04-04-2007 09:30 AM |
Vanda(Wanda) buttons | giancamati | Vizard | 1 | 12-07-2006 10:21 AM |
How to get the window handle | Joran | Vizard | 1 | 06-16-2006 11:01 AM |
Interactive Window | ChrisB | Vizard | 1 | 01-19-2005 10:36 AM |
The error window that couldn't | FlyingWren | Vizard | 2 | 12-02-2003 08:23 AM |