Hi,
I'm trying to do a popup window that is sized at 300x200 when clicking a button using the following code
var jscommand:String = "window.open('http://www.mydomain.com','win','height=200,width=300,toolbar=no,scrollbars=yes');"; var url:URLRequest = new URLRequest("javascript:" + jscommand + " void(0);"); navigateToURL(url, "_self");
It opens up fine except on Safari 3. Has anyone ever encountered this and can give me a pointer?
Thank you, Tee