Here is my scenario: xml stats and I want to do the field goal ratio 00/00 and want to treat it as a single text field comprised of two text fields with a separator "/". BUT, I want to do it only on certain conditions.
I have used
dim first, second, full as xpTextObject
self.getobjectbyname("firststat", first)
self.getobjectbyname("secontstat", second)
self.getobjectbyname("fullstat", full)
Full.text = first.text & " " & second.text
on the scene it works great. But I only need it to work when I want ratios.
What is the magic step I am missing. I have tried it on the stat title, on the datalinq key and on a dedicated text object. I use a dashboard and select from about 20 different stats using datalinq keys and it works great.
as always, thanks in advance