Musings of a Manchester Drupal guy

Drupal, Open Source, Analytics, Social Media.

Sunday, July 18, 2004

Opening styled web browser popups from flash

Saw this on the www.flashmove.com forum. Thought it was pretty useful to know

_root.onMouseDown = function() {
var url = "http://www.flashmove.com";
var w = 700;
var h = 500;
getURL("javascript:NewWindow=window.open('" + url + "','newWin','width="+w+",height="+h+" ,left=0,top=0,toolbar=No,location=No,scrollbars=No
,status=No,resizable=No,fullscreen=No');void(0);");
};