最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
一个简单的字母顺序变化效果
时间:2022-07-02 17:22:26 编辑:袖梨 来源:一聚教程网
问:我设定一个动态文本框var=zimu,我想让它不停的按顺序显示A-Z 26个字母,然后当显示到指定"T"时,则停止下来。这个效果用AS怎么写啊?
(终极讨厌)答:占位,用数组!看效果先:
代码如下:
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;
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;
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20