this works perfect for me, but i need to be per character not per word, is there a way to do it? thanks a lot, sorry to bother
s = effect("Slider Control")("Slider").value;
str = "";
txt = value.split(" ");
for (i = 0; i < Math.min(txt.length,s); i++){
str += (i > 0 ? " " : "") + txt[i];
}
str