hello everyone,
about the following code:
on (release) {
var formData = new LoadVars();
formData.cmd = “_cart”;
formData.business = "home@home.com";
formData.item_name = “something”;
formData.item_number = “00101”;
formData.amount = “$17.99”;
formData.currency_code = “USD”;
formData.lc = “US”;
formData[“add”] = “1”;
formData.send(“https://www.paypal.com/cgi-bin/webscr”, “_self”, “POST”);
}
after applying to a button, what code do i need to add so that a new browser window (say, 400 X 400) will pop up on release??
thanks,
s.t.