-
Expression help please
hello,
i was wondering if it was possible to adapt this script to make the buzz words dissolve into each other over 1/2 seconds or so (adjustable would be better)thank you
buzz_words = ” hopeful, buoyant, life-affirming, lightness, synchronicity, brightness, joy, mood, ambiance, humour, serendipity, up beat, constructive, challenging, optimistic, feeling, joyous celebration, positive, creative, celebration”;
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];