ActionScript 3.0 :: XML Flash Paypal Shop?
Oct 28, 2009I need to add a script to my code ... "subtotal + shipping $11.00 = Total"
cartRow.txt_St.text=currencySymbol+Number+carData[arrItems].SubTotal+".00";
I need to add a script to my code ... "subtotal + shipping $11.00 = Total"
cartRow.txt_St.text=currencySymbol+Number+carData[arrItems].SubTotal+".00";
I need to add a script to my code..."subtotal + shipping $11.00 = total".
View 1 RepliesI have only two fields Name and Email in a Order form and a PayPal button for payment at PayPal ( into my account).I can do the mail portion but have no idea about PayPal code, however on search here I found one code and after pasting this one to the PayPal button it redirects to my PayPal account. But the question is anybody can post a message and leave the site without paying me. How can I do this thing so that the user will forced to pay before posting the mail form. No idea how to proceed?
View 7 RepliesHow was this site done www.shopcomposition.com I am looking at setting up a webisite with an online shop and I came across this and it's amazing. How hard would it be to pull somthing like that off and what would be involved in making it.
View 14 Replieshow to embed the new paypallabs shop feature into an swf? This is the code generate from paypallabs:
[Code]...
How exactly do I emulate a shopping cart? I don't want to actually send any info, I just want to have the person click on something they want, then later be able to review the items "collected".My prof "showed" us how and this is what I have (but it doesn't work).
PHP Code:
addToCart.onPress = function() {
descSound.stop();
_global.collect_array.push("pieceThumb");
trace(_global.collect_array);
[code]....
(I added the _global. thinking if it was a global variable, it might work. It didn't work before either, when the variable was just declared in the same AS window as the above function.)
addToCart is the instance name of the movie clip you click on to add the item to the cart. mainCont.cartContent.cartItems is the path to the movie clip where I want the items to show up.
pieceThumb is the name of the movie clip I want added to the cart (the name of the clip, not the instance name). Pushing this to the array works, as when it is traced, the word "pieceThumb" shows up.
PHP Code:
cartLink.onPress = function() {
_root.mainCont.gotoAndStop("shopCart");
//haltActions.apply(exitLink);
descSound.stop();
_root.mainCont.cartContent.cartItems.attachMovie(_global.collect_array[0], _global.currentshown, 1000, {_x:-200, _y:10});
}
cartLink is the link to the shopping cart, so that when you click on it, this function is called. I'm assuming it makes the items show up, but nothing appears. So I'm assuming this is what's broken.
Is there a way to link flash to Paypal? Does anyone have any experience with this.
View 21 Repliesat the url [URL] t is an embedded video player. the swf filename is pp_msr_player.swf and apparently can take an xml-based playlist. is this an in-house developed flash video player, or is this particular player available somewhere else?[URL]
View 1 RepliesI have a paypal button it works fine. This is for selling one product. Now I want to add one Shipping charge ( $3.00 ) for each item. How can I do this? One more thing Is it possible to calculate the tax according to the country in the paypal site?
View 1 RepliesIn my last project, you can customize the good that you wan to buy. The data are saved in a sharedobject. I would like now those data to be passed to PayPal so that the listing of the choosen configuration would be present on the Paypal order page.
Is it possible ?I've seen that you can have option fields in a Paypal order page.But it is a drop down menu or text field you must populate...no text field that you could dynamically populate...
How I can add paypal link on flash?
View 1 Replies...sorry for the duplicate post, thought this needs to be in a more up to date forum than 'Flash 8 and older'It looks like Paypal has just changed their buy now code so my sites using the old Paypal button code are no longer working...Have been using this code
Code:
on (release) {
//create the LoadVars that will hold our paypal information
[code].....
I am writing a Flash site that needs to send the user to PayPal to pay to gain access to content on the site. The following is a test to send the user, along with the necessary data, to PayPal...
[Code]...
adding a Paypal button to my Flash site.
View 6 RepliesI have looked for something like this on Google and on this very site, but only found answers detailing procedures for sites. How is it possible to make so financial transactions can be carried over inside the game using Paypal, or maybe a different site? Is there any API/Library? If possible provide a solution in AS3...
View 1 Repliesi am have a donation page for my non-profit..i want the user to be able to click on certain box with a specific denominations, ie. $10, $50, etc...i also want have a input text box where the user could put whatever denomination they would prefer...then they would submit and the php file would send the info to my email address and then flash or whatever would direct them to the paypal site and all the info would be set and ready for them to make the donation...
View 3 RepliesI have an animated flash banner on a small Flash site that I would like to link to the clients Paypal merchant page. What is the best way to go about doing this?
View 1 Replieshow to take a classic paypal "buy it now" encrypted btn and code it within a flash interface? Im referring to paypal btns that are linked to a specific items listed within your paypal account.
View 2 RepliesI am trying to make a button in Flash (that uses ActionScript 2.0) that will load the PayPal web site using the code provided by paypal. I choped up the PayPal button to get the follow that I thought was correct:
Code:
var cmd:String = "_s-xclick";
var encrypted:String = "great-big-long-string-of-numbers";
[code].....
Currently I'm accepting payments from my website via PayPal. As it stands the user is redirected to PayPal where they can complete the purchase. I think I might have a better conversion rate if customers can enter there credit/debit details directly onto my website. So the question is how could I integrate a PayPal payment into my Flash ?
View 1 RepliesI want to use my own .swf button for PayPal payments with a "hidden format", but when adding the generated PayPal Website code to my html page, only a red X and the alt PayPal text is showing where the button should be. I have changed all Active X controls to Enable.Every time I contact PayPal I get a different reply. The last one was that I have to add a "static" image, but I really want to use my own button.I would rather find a way to paste the PayPal code into my buttons action script and then I only have to paste the Flash button to the html, but don't know how to manipulate that because the only code generated by PayPal is a "form" in html format. I am also adding text fields and guess that's why I don't get an generated email code from PayPal which I get if I don't add text fields.
View 21 RepliesHere is a sample of the code that would work:
form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"
input type="hidden" name="cmd" value="_cart"
input type="hidden" name="business" value="sample@sample.com"[code].....
I am trying to implement paypal payment in as3. But the return variable conflicts with an as3 keyword. So how to set return variable for returning from paypal to merchant site.
View 2 RepliesI am using PayPal Mobile Payments Library to implement PayPal for Android using Adobe AIR.When I am creating some PayPalPayment object for user to add an item to buy, how can I get that item in the callback function?
View 1 RepliesI'm looking to add a Paypal button to my Template. It's an XML driven site, with actionscript as the code.
I went to a developer to generate the code for the actionscript for the paypal button and I don't know where to put it, and or how to add it to the already written template and make it show up on the various XML pages.
I purchased ANYRD Flash Cart component a while back. Recently Paypal took a great step forward by adding support for Mexican Pesos. So since I live in Mexico people is more open to do a transaction in Pesos rather than Dollars or Euros. The downside for me is that MXN is not in the component's list of supported currencies. It is a dropdown option in the component inspector so I have no way of changing this. anyrd.com website has been down for several months so I don't think I can get any support from them and I don't see an update any time soon (or at all).
View 4 RepliesImplement PayPal's shopping cart html into my Flash? Here is a sample of the code that would work[code]...
View 1 Replieshow do i add a paypal buy now button and a view cart button to my flash movie??I have the code for html... but i dont know how to integrate it in flash
View 2 RepliesI'm setting up a paypal payment cart and have a bit of a problem; I can't specify a return address for a sucessful buyer to be directed to as 'return' is a reserved word- Is there any way i can get around this? Here is my code:
myPurchaseButton.onRelease = function() {
formData = new LoadVars();
formData.cmd = "_cart";[code].....
I am trying to setup a way to sell my music downloads through paypal with a "name your price" method.I want to use a textinput component. If the person types 0 (zero), it will take them to the DOWNLOAD PAGE. If they type in any other positive number, it will take them to paypal with that amount as the unit price.This is an editable link to a paypal item:URL...[code]within that link, there is a code for the price. it its "amount=1234" is there any way i could make it that whatever the person types into the textinput will be put into that code and then they are sent to that link?
View 1 Replies