Graphics

 View Only
  • 1.  How to use xpTakeItem and xpDataLinq Objects

    Posted 06-26-2018 15:08
    Would somebody be able to send me some short example scripts on how to use the TakeItem and Datalinq objects?

    -I'd like to trigger scenes using the take item # in the sequence editor from another scene.

    -And I'd like to modify the source and row of Datalinq sources.

    Thanks!


  • 2.  RE: How to use xpTakeItem and xpDataLinq Objects

    Posted 07-05-2018 13:59
    Solved the take item object script;

    dim num as xpTextObject
    self.getobjectbyname("num", num)
    dim takeitem as xpTakeItem
    engine.Sequencer.GetTakeItemByID(cInt(num.text), takeitem)
    takeitem.execute

    Haven't sorted out the xpDatalinq object yet.
    #XPression


  • 3.  RE: How to use xpTakeItem and xpDataLinq Objects

    Posted 07-05-2018 14:44
    Small example:

    dim result as xpTextObject
    dim input as xpTextObject
    self.GetObjectByName("Result", result)
    self.GetObjectByName("Input", input)
    result.datalinq.linkname = input.text


    you can replace linkname with row, column, etc...
    #XPression