Graphics

 View Only
  • 1.  How to trigger a crawl sequence by another scene?

    Posted 07-12-2017 13:48
    I am triying to combine a breaking news with crawl and sub title.
    I made crawl sequencer seperate than animated video background.
    So two different scene.
    in sequencer when call background scene i want to trigger crawl.
    I found scene director trigger for put in scene director but its not like simple sequence.Because roll is multiple sequence in it.
    I tried but not work!
    Thanks.


  • 2.  RE: How to trigger a crawl sequence by another scene?

    Posted 07-14-2017 15:39
    I would put a script on the "onOnline" script event of your background scene.

    engine.Sequencer.GetTakeItemByID(2001, takeitem) 'change number to match the TakeID of the other scene
    takeitem.execute


    You could even put a similar script on the "OnOffline" portion, so that your background scene sets the other scene offline as well:

    engine.Sequencer.GetTakeItemByID(2001, takeitem)
    takeitem.SetOffline


    #XPression


  • 3.  RE: How to trigger a crawl sequence by another scene?

    Posted 07-14-2017 20:56



    Thanks for replying bamboo.but iam not familiar with scripts :(
    When i paste code,cahneg take id number and click on flash symbol after that one error comes.
    it says :'' takeitem is not declared''
    after that i write scene name ''crawl ''
    but than ''crawl'' is not declared. comes.
    whats wrong ?


    #XPression


  • 4.  RE: How to trigger a crawl sequence by another scene?

    Posted 07-14-2017 21:28
    Sorry, I forgot a very important first line:
    dim takeitem as xpBaseTakeItem

    that should be the first line of the script. Apologies.
    #XPression


  • 5.  RE: How to trigger a crawl sequence by another scene?

    Posted 07-15-2017 18:03
    Thanks Bamboo.
    #XPression