Нашел исходник с эффектом typewriver. Запускается с нажатие на Button. Вот проблема как мне убрать это нажатие - так чтобы при запуске swf'ки сразу печатался текст. Вот сам код

Код AS1/AS2:
//set our counting-variable to starting point
q = 1;
//declare the text that we are going to use.
text = "Здесь мой текст";
//stop the movie. wait for other commands
stop();
//the typewriter:
if (q < text.length) {
textbox = text.substring(0, q);
q++
} else {
textbox = text;
gotoAndStop(1);
}
//loop back
gotoAndPlay(2);
Буду рад разьяснению)))