![](http://images0.cnblogs.com/blog/479886/201301/03144408-733d811705de445cb5a2ec0b1df776d1.jpg)
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= "运势平平!" ; } } |