Multi Level template property access

hi
Could you please help me to find out a way to access properties of the multi level template? What would the syntax look like?
There are 3 levels of templates in total and i would like to reach the property from the bottom template but only properties from the first top template are exposed when browsing :frowning:
I am sure there must be a way.

I presume you’re using Vision. You can’t browse automatically with the object selector, but you can use the same format it returns to dive into your template components as well. I.e. Using getComponent("<name>")

E.g.

event.source.getComponent("template1instance").getComponent("nestedTemplate1Instance").getComponent("Label").text

Where template1instance is the name of your top level embedded template and nestedTemplate1Instance is the name of the template embedded inside your top level template

Edit: I didn’t mention it, but you can only access them via scripting. Also, above is completely untested, but it should be similar to that