/*This action stops the playhead at the beginning of the movie.*/ stop(); /*This code adds functionality to a button. When the user clicks a button, the movie will play.*/ instanceNameHere.addEventListener(MouseEvent.CLICK, functionNameHere); function functionNameHere(event:MouseEvent):void { play(); } /*This code adds functionality to a button. When the user clicks the button, a Web site opens in a browser window.*/ instanceNameHere.addEventListener(MouseEvent.CLICK, functionNameHere); function functionNameHere(Event:MouseEvent):void { var openthisURLHere:URLRequest = new URLRequest('http://www.websitenameHere.com'); navigateToURL(openthisURLHere); }