In this adobe after effects tutorial, we will be learning to create type writing text animation using expressions in a very simple way. This is also called keyboard typing effect.
Script:
var startAt = 0;
var endAt = 4;
var maxLetters = Math.floor(linear (time, startAt, endAt, 0, value.length));
var result = value.substring(0, maxLetters);
result