Between scenes is either datalinq like you have done or scripting something like;
dim textparent, textchild as xpTextObject
dim parent as xpScene
dim fb as xpOutputFramebuffer
engine.GetOutputFramebuffer(0, fb)
fb.GetSceneOnLayer(0, parent)
parent.GetObjectByName("Text1", textparent)
self.GetObjectByName("Text1", textchild)
textchild.text = textparent.text
This example requires the scene you are copying from to be online.
#XPression