PDA

View Full Version : Change 2D text?


Batigol
10-22-2012, 12:18 AM
When I click a cell, a list of number will appear on the left.
After click on a number on the left it will update to cell.
It will also caculate the total value of each column or each cell.
I could do that now. But the way to do very not so good
I have to remove the text (value of row or column) and add new one.
In other game engine, I could change the text value.
How could I do that in Vizard?
http://forum.worldviz.com/attachment.php?attachmentid=540&stc=1&d=1350890135

farshizzo
10-22-2012, 03:14 PM
You can use the node.message to dynamically change the text value.
c2.message('new value')
I'd recommend reading through the documentation, especially the Text node basics section.

Batigol
10-22-2012, 07:36 PM
Thanks farshizzo