Graphics

 View Only
  • 1.  Eject Clip(player)

    Posted 01-13-2021 17:55

    Is there a Rosstalk command to eject a clip in the XPression Clip player? CLFB 0001 does not work when the FB is a Server Channel. CLRA does work, but it clears all FBs (obviously).



  • 2.  RE: Eject Clip(player)

    Posted 01-28-2021 14:31

    You can put a script action Keyboard / GPI Mapping and keybind that to something like "ctrl+1"

    'Then place this script in there, 0 will clear Channel 1, 1 will clear channel 2.

    dim SC as xpServerChannel

    Engine.GetServerChannel(0, SC)

    sc.Eject()

     

    'this script will remove the clip from the preview on the server channel. 

    dim SC as xpServerChannel

    Engine.GetServerChannel(0, SC)

    sc.EjectPreview()


    #XPression