Skip to content

Instantly share code, notes, and snippets.

@acotie
Created February 26, 2010 16:53
Show Gist options
  • Save acotie/315895 to your computer and use it in GitHub Desktop.
Save acotie/315895 to your computer and use it in GitHub Desktop.
<mx:Script>
<![CDATA[
import flash.net.*;
public function openNewWindow(event:MouseEvent):void {
var u:URLRequest = new URLRequest("http://www.adobe.com/flex");
navigateToURL(u,"_self");
}
]]>
</mx:Script>
<mx:Button label="Open New Window" click="openNewWindow(event)"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment