Flash Intro Assignment example - Fall 2011
Four images sequences, four images in four corners, invisible SkipIntro_btn



Here is the code that went into the actions layer, frame #1.  
            The invisible button is named: gotoUNI_btn
     
  gotoUNI_btn.addEventListener(MouseEvent.CLICK, f);
     
  var UNI:URLRequest = new URLRequest("http://www.cs.uni.edu");
    
  function f(evt:MouseEvent):void 
  {
	  stop();
	  navigateToURL(UNI, "_self");
  }

 
 
  
  
Here is the code that went into the actions layer, frame #425.
   
     stop();
     navigateToURL(UNI, "_self");