Hi, I’ve tried paypals developer forum but they don’t seem to checkin quite often. My dilemma is my paypal pay now button. It worked fine for months on my html site, but since I converted to flash, it doesn’t work now. Heres the two scripts I"ve tried
First Try
on (rollOver) {
this.gotoAndPlay("s1");
}
on (releaseOutside, rollOut) {
this.gotoAndPlay("s2");
}
on (release) {
getURL("https://www.paypal.com/cgi-bin/webscr—cmd=_xclick&business=my%address%2ecom&item_name=Your%20Item20%Here&item_number=groundcamo2&amount=295%2e00&no_shipping=2&no_note=1¤cy_code=USD&lc=US&bn=PP%2dBuyNowBF&charset=UTF%2d8", "_blank");
}
------------------------------------------------------------------------
Second one
on (rollOver) {
this.gotoAndPlay("s1");
}
on (releaseOutside, rollOut) {
this.gotoAndPlay("s2");
}
on (release) {
//create the LoadVars that will hold our paypal information
var paypal = new LoadVars();
//specify the business, amount of the item, shipping, etc.
paypal.cmd="_xclick";
paypal.upload="1";
paypal.business="[EMAIL="my@address.com"]my@address.com[/EMAIL]";
paypal.currency_code="CAD";
paypal.amount="";
paypal.handling = "";
paypal.item_name="";
paypal.input_type="hidden";
paypal.input_button="encrypted";
paypal.input_name="encrypted";
paypal.input_value="-----BEGIN PKCS7-----My paypal URL-----END PKCS7-----";
//send information to PayPal
paypal.send("[https://www.paypal.com/cgi-bin/webscr","POST](https://www.paypal.com/cgi-bin/webscr)";
}