投稿者 越智  (学生) 投稿日時 2009/2/19 15:03:44
textbox1.text="EZ安全アクセスサービスに加入しましょう。"
E..Z...とゆうふうに1文字ずつ取り出し....
VB2008無料版です。
JavaScriptだと、こんな感じのやつです。
<html><head><title>省略</title>
<Script type="text/javascript">
var msg="EZ安全アクセスサービスに加入しましょう。";
function disp()
{
setTimeout("disp()",300);
msg=msg.substring(1,msg.length)+msg.substring(0,1);
document.form1.box.value=msg;
}
</script><head>・・・・・・・</html>