makapoh

Код для кнопки в Flash-баннере

Jan 29th, 2016
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Для Actionscript 2.0:
  2.  
  3. on (release) {
  4.     if (_root.link1.substr(0,5) == "http:") {
  5.         getURL(_root.link1, "_blank");
  6.     }
  7. }
  8.  
  9. //Для Actionscript 3.0:
  10.  
  11. MyClickTagButton.addEventListener(
  12.     MouseEvent.CLICK,
  13.     function():void {
  14.         if (root.loaderInfo.parameters.link1.substr(0,5) == "http:") {
  15.             navigateToURL(new URLRequest(root.loaderInfo.parameters.link1), "_blank");
  16.         }
  17.     }
  18. );
Add Comment
Please, Sign In to add comment