THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/04/2011 at 07:29, xxxxxxxx wrote:
I'm creating a splinetext object and want to change its heigh, text etc after the fact. Here's a short version:
o = c4d.BaseObject(c4d.Osplinetext)
...
o = doc.SearchObject("Text")
bc = o.GetData()
bc[c4d.PRIM_TEXT_HEIGHT] = 100
bc[c4d.PRIM_TEXT_TEXT] = "xyz"
o.SetData(bc)
c4d.EventAdd()
This technically seems to work, the object is being created and when I later call the changes, they are written correctly and appear changed in the attribute editor. However, these changes are not represented in the Viewport, the spline text just stays as it was - until I manually change any value in the attribure editor, then all the changes are shown at once. I also tried CallCommand(12147) with no better result. Am I missing a specific refresh command?
Thanks