Assign Attribute Value to Another Device

Can i assign a device attribute value to an attribute of another device? in other words is there a way to make TVInfo.Channel equal MainTv.AudioTrackData.Artist at all times? it sounds like an easy proposition but I just can’t figure it out.

That attribute is read-only. You will probably get an error if you try to write any value to it. Your best option is to update. In other words, replace all instances of AudioTrackData.Artist with TVInfo.Channel in the XAML file.

Thank you Bill. Actually, I am trying to do it the other way around. AudioTrackData.Artist is a local value, I can’t access it once I leave the wifi network, so I am trying to save its value to TVInfo.Channel, a virtual device created in HR, which I assume will be accessible anywhere with internet access. Is that doable?