rexrainbow
Ha! It has the append feature in there. I implemented it inside the regular TypeText action with an extra variable passed in (excerpt from 7z):
Acts.prototype.TypeText = function(param, speed, append)
{
if (typeof param === "number")
param = Math.round(param * 1e10) / 1e10; // round to nearest ten billionth - hides floating point errors
this.content = param.toString();
this._start_typing(this.content, speed, append);
};
:) Tried to be a minimalist. I like the idea better of adding the append_text function. :)
Thanks!