Just a little thing I've been playing with for NYE, for your 1 hour/ 30minutes /10 minutes etc to go, you'll have something planned yourself
but just as general countdown for your video out you could do this
firstly set some variables, say you start showing your countdown at 9:30pm, 2 & a half hours to go, also turn text fx on
set 'hour' 2 & set 'min' 30 & set 'sec' 0 & effect_active 'text' 1
Second start these variables counting down [really you could do script 1 & 2 together]
repeat_start 'tCounter' 1000ms & cycle 'sec' -60 & var 'sec' 59 ? cycle 'min' -60 & var 'min' 59 ? cycle 'hour' -24 : : :
Third put these variables into a text string & send it to the text fx
repeat_start 'clock2text' 1000ms & get_text "`get_var 'hour' & param_cast '00'`:`get_var 'min' & param_cast '00'`:`get_var 'sec' & param_cast '00'`" & param_cast 'text' & effect_string 'text' 2
realistically you'd ditch this at 1 minute to go and you could kill it via event schedule at 23:58:59 with something like this
repeat_stop 'tcounter' & repeat_stop 'clock2text' & effect_active 'text' 0
And honestly you could put the countdown together with 1 script [I broke it up to make it easier to understand]
set 'hour' 2 & set 'min' 30 & set 'sec' 00 & effect_active 'text' 1 & repeat_start 'clock2text' 1000ms & get_text "`get_var 'hour' & param_cast '00'`:`get_var 'min' & param_cast '00'`:`get_var 'sec' & param_cast '00'`" & param_cast 'text' & effect_string 'text' 2 & cycle 'sec' -60 & var 'sec' 59 ? cycle 'min' -60 & var 'min' 59 ? cycle 'hour' -24 : : :
but just as general countdown for your video out you could do this
firstly set some variables, say you start showing your countdown at 9:30pm, 2 & a half hours to go, also turn text fx on
set 'hour' 2 & set 'min' 30 & set 'sec' 0 & effect_active 'text' 1
Second start these variables counting down [really you could do script 1 & 2 together]
repeat_start 'tCounter' 1000ms & cycle 'sec' -60 & var 'sec' 59 ? cycle 'min' -60 & var 'min' 59 ? cycle 'hour' -24 : : :
Third put these variables into a text string & send it to the text fx
repeat_start 'clock2text' 1000ms & get_text "`get_var 'hour' & param_cast '00'`:`get_var 'min' & param_cast '00'`:`get_var 'sec' & param_cast '00'`" & param_cast 'text' & effect_string 'text' 2
realistically you'd ditch this at 1 minute to go and you could kill it via event schedule at 23:58:59 with something like this
repeat_stop 'tcounter' & repeat_stop 'clock2text' & effect_active 'text' 0
And honestly you could put the countdown together with 1 script [I broke it up to make it easier to understand]
set 'hour' 2 & set 'min' 30 & set 'sec' 00 & effect_active 'text' 1 & repeat_start 'clock2text' 1000ms & get_text "`get_var 'hour' & param_cast '00'`:`get_var 'min' & param_cast '00'`:`get_var 'sec' & param_cast '00'`" & param_cast 'text' & effect_string 'text' 2 & cycle 'sec' -60 & var 'sec' 59 ? cycle 'min' -60 & var 'min' 59 ? cycle 'hour' -24 : : :
Inviato Sat 23 Nov 19 @ 7:54 pm