Graphics

 View Only
  • 1.  text object to key .asstring

    Posted 05-23-2017 17:07
    i know this is an easy script i just for got how to work the script
    looking at making a text object over to a datalinq key so that i can use a dash board to fill in player numbers can some one what the exact script would be


  • 2.  RE: text object to key .asstring

    Posted 05-23-2017 17:15
    dim text as xpTextObject
    dim keys as xpDatalinqKeys
    dim key as xpDatalinqKey

    self.getObjectByName("Text1", text)
    self.GetDatalinqKeys(keys)
    keys.GetKeyByName("key1", key)
    key.AsString = text.text
    Self.RefreshDatalinqs()

    #XPression


  • 3.  RE: text object to key .asstring

    Posted 05-23-2017 17:35
    thank you, thats exactly what i needed

    #XPression