Graphics

 View Only
  • 1.  Script clock offline

    Posted 10-29-2015 16:24
    I have a clock counting down, is there a script that will take the scene offline once the clock its 0:00

    Thanks


  • 2.  RE: Script clock offline

    Posted 10-31-2015 14:46
    In the OnSetText for the text object that is linked to the clock you could do something like

    `if text = "0:00"

    scene.scenedirector.play

    end if

    `

    That would resume the scene director if it were paused, so it could animate off.

    Or you could replace the middle with scene.setoffline if you simply wanted to take the scene off-air immediately.

    #XPression


  • 3.  RE: Script clock offline

    Posted 11-05-2015 00:00
    Thanks Brian that is just what i was looking for

    #XPression