Technique to have text display a variable value
Posted: 03 Jan 2015 02:53
Hey all!
I just wanted to share a simple technique that will allow your text objects to display variable values in Lemur 5. All you have to do is join two strings, the first of which you leave blank.
Hope that helps someone out there! Text objects have an advantage over monitors because they use up less FPS.
Best
MOH
I just wanted to share a simple technique that will allow your text objects to display variable values in Lemur 5. All you have to do is join two strings, the first of which you leave blank.
Code: Select all
decl string1='';
decl string2=variablevalue;
decl word=string1+string2;
setattribute(Text,'content',word);
Best
MOH