| 1 2 3 4 5 6 7 8 9 10 11 12 13 14
| go_btn.addEventListener(MouseEvent.CLICK, augur); function augur(me:MouseEvent){
var rnd=Math.floor(Math.random()*4);
if (rnd==0){
msg_txt.text="^O^ 万事大利!";
}else if (rnd==1){
msg_txt.text="^_^ 喜气临门!";
}else if (rnd==2){
msg_txt.text="出入平安!";
}else if (rnd==3){
msg_txt.text="运势平平!";
}
} |
转载于:https://www.cnblogs.com/babyhhcsy/archive/2013/01/03/2842950.html