
Originally Posted by
IQ
Code:
on (press) {
javascript("window.open('http://www.clubfaction.net/site/armageddonflyers.html','armageddon','width=600,height=476, addressbar=no, statusbar=no, resizable=no, scrollbars=no, toolbar=no, top='+((screen.availHeight/2)-(400/2))+',left='+((screen.availWidth/2)-(400/2))+'')");
}
This code is fine buddy, you just need to append your get variables to the url, for example
Code:
on (press) {
javascript("window.open('http://www.clubfaction.net/site/armageddonflyers.html"+_root.path.to.your.get.variable+"','armageddon','width=600,height=476, addressbar=no, statusbar=no, resizable=no, scrollbars=no, toolbar=no, top='+((screen.availHeight/2)-(400/2))+',left='+((screen.availWidth/2)-(400/2))+'')");
}
[/quote]