-
Buzz Word fade in/out
Hi,
Can anybody help me modifying this “Buzz Word” expression?
buzz_words = “One|Two|Three|Four|Five|Six|Seven|Eight|Nine|Ten”;
split_buzz_words_array = buzz_words.split(‘|’);
buzz_frame_rate = effect(“Buzz Frame Rate”)(1);
buzz_frame = Math.floor(time * buzz_frame_rate);
buzz_index = buzz_frame % split_buzz_words_array.length;
split_buzz_words_array[buzz_index];Rather than jumping from one word to the next, I would like to be able to fade one word out and fade the next word in. Any help appreciated.
Many thanks,
Nino