WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 08-23-2013, 10:09 AM
Frank Verberne Frank Verberne is offline
Member
 
Join Date: Mar 2008
Location: Netherlands
Posts: 148
The function viz.window.setFloat() should indeed make your vizard window stay on top of other windows. You mention something about pressing the Vizard logo. I don't know what you're doing in the rest of your code, but if your code is in some kind of loop from the start, it could be that the first frame is not drawn yet, and nothing of the settings are applied. You could add this piece of code to wait for the first frame to be drawn:

Quote:
import viz
import viztask

def wait():
yield None

viztask.schedule(wait())
To be sure, does this code alone also give troubles:
Quote:
import viz

viz.window.setPosition(500,500)
viz.window.setSize(700,300)
viz.window.setBorder(viz.BORDER_NONE)
viz.window.setFloat()

viz.go()
It works in Vizard 4, and it should work in Vizard 3 as well.

Furthermore, check the settings of the application you want to run in parallel. If both of them want to be on top, you could get issues...

Last edited by Frank Verberne; 08-23-2013 at 10:13 AM.
Reply With Quote
 

Tags
stay on top, window


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
Unexpected Change of Window Size javadi Vizard 7 07-23-2013 03:56 PM
[win7] Bad quality when not on primary monitor or window has no focus Huib Vizard 5 04-12-2012 07:34 AM
Using a texquad to cover a window Enlil Vizard 4 02-07-2012 04:13 PM
tkinter window focus John P Vizard 4 08-31-2009 06:51 AM
The error window that couldn't FlyingWren Vizard 2 12-02-2003 09:23 AM


All times are GMT -7. The time now is 05:21 PM.


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