I would like to reference a display property from another display and can't find how to do it in graphics studio help.
Say I have a text box on a GEM or a display (Call it display A) and I would like it to reference a display property on display B.
What would the path look like or is there a function that could help me do this?
Andre Dicaire
In reply to Matt Stoner:
In reply to Daniel Moyers:
You could also have your GEM have a multi-language string "Label" GEM option that you tie your display link text to be "ultimately" flexible and it could be any text. Otherwise you can do some function as Andre described but it would require that all your displays follow the naming convention.
The code isn't bad to just replace the first "_" with a "-" and the next "_" with a "." if that is always the format.
let DispTitle = DisplayName.replace('_' , '-');DispTitle = DispTitle.replace('_' , '.');return DispTitle;
Where DisplayName would be String passed to the multi-language function.
I think that is what is would be anyway :)