![]() |
|
|
|
#1
|
|||
|
|||
|
Hi,
Thanks again for your reply. Yes, I read that post before posting mine. Apparently it does matter whether the dialogue window is popped-up over a full screen or a window. Here it goes a sample code, Code:
import viz
import viztask
viz.setOption('viz.fullscreen', '1')
viz.go()
def MainProcedure():
...
yield viztask.waitDraw()
Age = viz.input('Age?')
...
if __name__ == "__main__":
viztask.schedule(MainProcedure())
I can somehow understand the reason behind it: it might not be trivial to have a fullscreen display and display a window over it, as it somehow violate the definition of fullscreen. But, we know that it sometimes happen. For now, as a work-around I open the Vizard display in window mode, but to the size of the screen. It is a bit annoying as you see the border of the window, but the dialogue window doesn't affect the original display. Greetings Amir |
|
#2
|
|||
|
|||
|
I don't exactly understand your problem (as you sample code is not complete). However, you can get rid of the border of a window using:
Code:
viz.window.setBorder(viz.BORDER_NONE) |
![]() |
|
|