Flash multi button sample
February 25th, 2010
Actionscript 3.0:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | function btnsF(event:MouseEvent):void { switch (event.target.name) { case "btn1" : changePage("http://www.flafolder.com/flash/applications/flash-web-site-template/"); break; case "btn2" : changePage("http://www.flafolder.com/flash/tutorials/flash-clock-tutorial-video/"); break; case "btn3" : changePage("http://www.flafolder.com/flash/tutorials/flash-animation-tutorial-video/"); break; } } function changePage(mylink:String) { var url:String=mylink; var request:URLRequest=new URLRequest(url); navigateToURL(request); } btns.addEventListener(MouseEvent.MOUSE_DOWN, btnsF); |


Leave a Reply