一聚教程网:一个值得你收藏的教程网站

热门教程

一个简单的字母顺序变化效果

时间:2022-07-02 17:22:26 编辑:袖梨 来源:一聚教程网

问:我设定一个动态文本框var=zimu,我想让它不停的按顺序显示A-Z 26个字母,然后当显示到指定"T"时,则停止下来。这个效果用AS怎么写啊?

(终极讨厌)答:占位,用数组!看效果先:
flash/swflash.cab#version=5,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
代码如下:

var abc_array:Array = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"];
var _fmt:TextFormat = new TextFormat();
var n:Number = 0;
function out_func() {
onEnterFrame = function () {
  _fmt.color = Math.random()*0xffffff;
  _fmt.size = 50+Math.random()*20;
  _txt.setNewTextFormat(_fmt);
  _txt.text = abc_array[n];
  _txt.text == "T" ? delete onEnterFrame : 终极讨厌;
  n++;
  n %= abc_array.length;
};
}
out_func();
_btn.onRelease = out_func;

热门栏目