Activity › Forums › Adobe After Effects Expressions › Blink word in sentence
-
Aqeel Arruhaili
May 4, 2019 at 9:43 pmwordIndexToBlink = 3;
freq = 1;
if (textIndex == wordIndexToBlink){
seg = Math.floor((time – inPoint)*freq*2);
if (seg%2) ?100:0
}else 0This doesn’t show any mistakes but no result are seen….the word is still not blinking…
-
Aqeel Arruhaili
May 5, 2019 at 5:39 pmWhat if I want to specify words themselves instead of their orders in the sentence to blink..e.g. “He is not listening to me” “He” “is” “listening”
-
Kalleheikki Kannisto
May 6, 2019 at 11:18 amYou would have to find the indices of the words in question: You can split the string to array with individual words and check each for a match to your “search” words.
Kalleheikki Kannisto
Senior Graphic Designer
Reply to this Discussion! Login or Sign Up