WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 05-06-2008, 09:35 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
1) You can publish your script to an EXE by selecting File -> Publish as EXE from the menu. Just follow the on screen instructions from there.

2) Here is some code that will resize the main window so the second window does not cover it up. I also added a background window that will fill up the rest of the empty space in the window.
Code:
#Add window to top
top_view = viz.addView()
top_view.setPosition([0,10,0])
top_view.setEuler([0,90,0])
top_window = viz.addWindow(pos=(0,1),size=(0.2,0.2),view=top_view)

#Reduce size of main window
viz.MainWindow.setSize([0.8,1])
viz.MainWindow.setPosition([0.2,1])

#Add background window
background = viz.addWindow(pos=[0,1],size=[1,1])
background.setView(view=viz.addView(scene=viz.addScene()))
background.drawOrder(-10)
Reply With Quote
 


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
Publish as EXE - Introduction tobin Vizard 19 02-12-2009 02:51 AM
Vizard file save as .exe urgent!!! tacbob Vizard 2 05-10-2007 01:05 AM


All times are GMT -7. The time now is 01:08 PM.


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