@volkaertskristof if you do so, I guess it’ll make more sense to change the stop condition as well:
let count = 1;
//...
if(count > text.length){return clearInterval(typingInterval);}
$w('#text1').text = text.substring(0, count);
count++;
}
//..
@volkaertskristof if you do so, I guess it’ll make more sense to change the stop condition as well:
let count = 1;
//...
if(count > text.length){return clearInterval(typingInterval);}
$w('#text1').text = text.substring(0, count);
count++;
}
//..