Graphics

 View Only
  • 1.  Play two events in IN and OUT animations

    Posted 07-28-2018 08:28
    Hello,

    I want to play a logo animation when i read a scene in IN and OUT.
    The logo animation is in another scene.

    Thank for your help.



  • 2.  RE: Play two events in IN and OUT animations

    Posted 07-31-2018 01:28
    This is a script I was given a couple of years ago (I think by @bford ) that has served me very well.

    Dim MySequencer as xpSequencer = nothing
    MySequencer = Engine.Sequencer
    Dim MyTakeItem as xpTakeItem = nothing
    MySequencer.GetTakeItemByID(1235, MyTakeItem)
    MyTakeItem.Execute()

    Where take item 1235 was a transition we use between lower thirds.

    This is contained in a script event in a scene director. I play it on a layer above my lower thirds so they don't conflict.
    #XPression


  • 3.  RE: Play two events in IN and OUT animations

    Posted 07-31-2018 16:56
    Since version 6.0 you can now use Scene Triggers for other scenes that are online.

    If the scene is not online and you want to bring it online then it will have to be scripted.
    #XPression