Share Pastebin
Guest
Public paste!

ta

By: a guest | Feb 9th, 2010 | Syntax: ActionScript | Size: 0.26 KB | Hits: 25 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. btn1.id = 1;
  2. btn2.id = 2;
  3. btn3.id = 3;
  4. btn4.id = 4;
  5.  
  6. function onMouseClick(e:Event):void {
  7.         if(e.target.id == 1}{
  8.                 var request1:URLRequest = new URLRequest("url");
  9.                 navigateToURL(request1, "_blank");
  10.         } else if(e.target.id == 2){
  11.                 ...
  12.                 ...
  13.                 ...
  14.         }
  15. }