Upgraded to 7.0 (thanks!) and still not having any luck with OnExport. (Or OnRender for that matter.)
The script does work OnOnline, do I need to change my script for the OnExport event?
dim source as xpTextObject
dim keys as xpDatalinqKeys
dim key as xpDatalinqKey
'find the text object by name that the key value will come from
self.getObjectByName("School2", source)
'find the keys in the scene and find the specific datalinq key by name
self.GetDatalinqKeys(keys)
keys.GetKeyByName("TRI", key)
key.AsString = source.text
'refresh datalinqs in the scene
Self.RefreshDatalinqs()
#XPression