Hey guys,
I've got a textbox and a monitor in a different container that I want to show the text of the textbox. Is that possible?
How to show the text 'value' of a text object in a monitor
-
- Newbie
- Posts: 42
- Joined: 01 Jan 2016 20:45
Re: How to show the text 'value' of a text object in a monit
The text of the Text object is an attribute called content. So if you set the monitor value to getattribute(Text,'content'), everytime you change the text value the monitor is automatically updated.
Cheers!
Cheers!
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
-
- Newbie
- Posts: 42
- Joined: 01 Jan 2016 20:45
Re: How to show the text 'value' of a text object in a monit
perfect thanks. I tried the getattribute (Text, 'text').No surprise it didnt work.But how about the different container? If my "Text" Is in container1 and "Monitor" is in container2?
I've got a "Monitor" in several containers so how can I show lemur which one I want it to show
I've got a "Monitor" in several containers so how can I show lemur which one I want it to show
Re: How to show the text 'value' of a text object in a monit
You can put any number of containers and interfaces in the prefix. So if you want Text in container one: getattribute(Container1.Text,'content'). If it's on another interface in two containers you can do: getattribute(Interface1.Container1.Container2.Text,'content') etc.
"Having no silence in music is like having no black or white in a painting" - Brian Eno
https://soundcloud.com/mrcorba
https://soundcloud.com/mrcorba
-
- Newbie
- Posts: 42
- Joined: 01 Jan 2016 20:45