|
Hi,
I seem to have some weird problems accessing the property of the ViewerInfos.
Python:
lViewerInfos = FBSystem().Renderer.ViewerInfos
lViewerInfos.PropertyList.Find( 'Comment 1 Text' ).Data = "Test"
Rough translation for testing:
C++:
HFBProperty lProp = FBSystem().Renderer->ViewerInfos->PropertyList.Find("Comment 1 Text");
if(lProp) {
char lData[6] = "Test!";
lProp->SetData(&lData);
}
Am I missing something here that is quite obvious?
Cheers,
AV
Choose a job you love, and you will never have to work a day in your life.
|
|
|