SOLVED: script text=text.replace("oldtext", "newtext")
if text = "POINTS" then
text = "tp"
elseif text = "MINUTES" then
text = "min"
' and so on listing all your datalinq choices.
end if
'then assign these texts to the datalinq key in the same script
dim keys as xpDatalinqKeys
dim key as xpDatalinqKey
Scene.GetDatalinqKeys(keys)
keys.GetKeyByName("stat1", key)
key.AsString = text
Scene.RefreshDatalinqs
#XPression