WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 06-05-2008, 01:03 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
The last thing I can think of is to manually set the encoding of the text object to UTF8:
Code:
text.setEncoding(viz.ENCODING_UTF8)
Vizard will check for a UTF8 BOM in your main script and automatically enable UTF8 encoding, so manually setting the encoding is not usually necessary, but its worth a shot.

You can attach images to a post by clicking the "Manage attachments" button when replying.
Reply With Quote
  #2  
Old 06-09-2008, 11:42 PM
dan12345 dan12345 is offline
Member
 
Join Date: Jan 2008
Posts: 58
worked!

it worked
thanks a bunch
Reply With Quote
  #3  
Old 07-10-2008, 01:05 AM
dan12345 dan12345 is offline
Member
 
Join Date: Jan 2008
Posts: 58
another small problem with hebrew

when using the code written before - it reverses the order of the letters ( which can also be seen in the jpg you attached )

i tried fixing this using method such as

aa = array.array('c', chars)
aa.reverse()
newa = aa.tostring()

or

temp = list(string)
temp.reverse()
newString = string.join(temp, '')

but for some reason this scrambled the hebrew, and adding a text with the new strings led to strange results...

any solution?
thanks
dan
Reply With Quote
  #4  
Old 07-10-2008, 11:36 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Here is some sample code that will reverse an utf8 string:
Code:
# coding: UTF-8
import viz
viz.go()

def reverse_hebrew(s):
	u = unicode(s,'utf8')
	u = u[::-1]
	return u.encode('utf8')

text = viz.addText(reverse_hebrew('קראטוןםפשדגכעיחלךזסבהנמצ'),viz.SCREEN,pos=(0.5,0.5,0),align=viz.TEXT_CENTER_CENTER)
Reply With Quote
Reply

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
McAfee Privacy Service 8.1 causes Vizard not to run mspusch Vizard 2 09-24-2008 06:17 PM
Vizard and Augmented Reality realvision Vizard 4 04-04-2008 11:59 AM
Vizard won't run wouters Vizard 5 02-05-2008 12:12 PM
Fall 2007 release of Vizard R3 3 D Announcements 0 10-15-2007 05:50 PM
McAfee Privacy Service 8.1 causes Vizard not to run mspusch Vizard 0 03-01-2007 09:24 PM


All times are GMT -7. The time now is 08:40 AM.


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