View Single Post
  #5  
Old 08-27-2013, 02:10 PM
madeinjava madeinjava is offline
Member
 
Join Date: Dec 2011
Posts: 5
Thumbs up

Quote:
Originally Posted by farshizzo View Post
I believe the problem is that the command is being called before the window is created ( i.e. viz.go() ). Try changing your code to the following:
Code:
viz.window.setPosition(500,500)
viz.window.setSize(700,300)
viz.window.setBorder(viz.BORDER_NONE)

viz.go()

viz.window.setFloat()
This will be fixed in a future release though.
Works like a charm! Thanks farshizzo and Frank!
Reply With Quote