WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 04-13-2016, 03:00 AM
Erikvdb Erikvdb is offline
Member
 
Join Date: May 2013
Posts: 63
Vizinfopanel automatic resize problem

Hi, I've ran into an issue with an infopanel in one of my projects. The default behavior of the infopanel is that it automatically resizes to the text or objects inside, which is fine for my application. However when I want to change one of the texts during the task, the panel doesn't automatically resize.

I've isolated the problem to this. The following code works, and the infobox is wrapped nicely around the new line.
Code:
import viz, vizinfo

viz.go()

ip = vizinfo.InfoPanel('', icon=False, align=viz.ALIGN_CENTER)
text = ip.addItem(viz.addText('hi'), fontSize=18, align=viz.ALIGN_CENTER_CENTER)

def setMessage():
	text.message('this is a looooooooong line')
	
setMessage()
But the following code, when pressing spacebar, the text changes but the infobox keeps it's original width, so the new text overflows.

Code:
import viz, vizinfo, vizact

viz.go()

ip = vizinfo.InfoPanel('', icon=False, align=viz.ALIGN_CENTER)
text = ip.addItem(viz.addText('hi'), fontSize=18, align=viz.ALIGN_CENTER_CENTER)

def setMessage():
	text.message('this is a looooooooong line')

vizact.onkeydown(' ', setMessage)
I have a workaround where I just pad the original line with spaces to the length of the new line, so the infobox is always the same size (or I could do something like this), but maybe there's a different solution or maybe this is a bug that needs fixing
Reply With Quote
 

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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
Cave Collision problem TopazFrost Vizard 2 02-13-2014 02:34 PM
The problem of adding two .ive models hengshan.li Vizard 1 08-08-2011 12:04 AM
Vizard problem mizutani_jun Vizard 4 01-09-2011 03:39 PM
problem with female animations vmonkey Vizard 1 10-07-2005 10:36 AM
PROBLEM: Picture-in-Picture breaks textures?!? vcarlson Vizard 4 10-05-2004 04:22 PM


All times are GMT -7. The time now is 03:09 PM.


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