Paypal-flash How Do I Add A Drop Down For Paypal
Ok I am putting a paypal store in flash.
I have the buttons working but one of items I am selling is a t-shirt and they come in different sizes. Is there a way to add a drop down menu or radio button that will work with my paypal button.
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX
Posted on: 03-18-2005, 09:07 PM
View Complete Forum Thread with Replies
Sponsored Links:
HELP Using PayPal With Flash MX
My web site uses PayPal for orders and I am making a small "Build Your Own Computer" page in Flash MX so that users can customize computers. I need help with the following:
When the "Complete" button is pressed, I need Flash to insert the computer into a PayPal shopping cart with the name being a 128 character string that I will set and with the price being the total price. The only way I can think of how to do that is to have flash edit the hidden text on the HTML page.
SOMEONE PLEASE HELP!!
THANKS!!!!
View Replies !
View Related
Flash 5 And Paypal
okay, can anybody give me a working example of a flash 5 site hooked up to paypal, actually using flash buttons to communicate the paypal form variables? i'va made a functional hybrid site (http://www.scrapmenagerie.com) but i'd like to see if i can get another 100% flash site hooked up (http://www.grooveisintheart.com). thanks for any help...
View Replies !
View Related
Flash And PayPal
Hi Everyone,
I've been asked to design a website for a bloke whos starting up his own business, and he needs a shopping cart facility, that uses PayPal.
I have no idea how shopping carts or PayPayl works, so does anyone know where i can information on it?..
Are Shopping carts and Paypal easy to do in Flash, because Flash is the only webdesign tool i know how to use.
Thanx
View Replies !
View Related
PayPal And Flash
Hi,
Has anyopne ever used paypal with flash?
Is it possible to have the a shipping option at the checkout stage like this example:
UK shipping £2.00
Europe shipping £3.00
USA & Canada shipping £4.00
with Rest of the World shipping £5.00
Each additional item will add is £1.00.
If so how is it done?
Many thanks in advance!
Jamie
View Replies !
View Related
Paypal On A Flash MC
Has anyone any experience writing the paypal button information on to a flash MC. I have found programs that make flash buttons ( independent buttons! might as well just have a .gif )
I have an image that I want to incorperate the buttons into. I cant layer .gif in Dreamweaver cuz the X.Y values are all bogus, the WYSIWYG view and the online view show completely different possitions for the buttons (WYSIWYG is ok, online is wrong)
sorry to go on a rant about another program,
so yes, looking for a good way to incorperate Paypal to my .SWF
Thanks
Mark
View Replies !
View Related
Paypal On Flash MC
Im trying to put a paypal link on a flash MC and I came across this and Im wondering if anyone is familiar with it and does anyone know how to write it for a subscription site?
on (press)
Code:
{
paypal = new LoadVars();
paypal.cmd = "_xclick";
paypal.business = "";
paypal.item_name = "";
paypal.no_shipping = "1";
paypal.no_note = "1";
paypal.currency_code = "USD";
paypal.tax = "0";
paypal.send("https://www.paypal.com/donate/add=", "_blank", "post");
}
Thanks
View Replies !
View Related
Flash Paypal
flash paypal
Hi all,
I'm developing a shopping cart in flash to connect with paypal. The cart side is all fine. When the buy btn is pressed the contents of the basket are recorded in the multi diemensional array so I can pass the information to paypal. Each products info is stored in an array which is then within another array called paypal_arr. This code below is what I'm using to pass the variables too paypal, but in paypal I get an error message
"Please enter amount greater than zero"
Does anyone have any experience with paypal or can offer any advise to why this is happening.
code:
purchase = function () {
paypal = new LoadVars();
paypal.cmd = "_cart";
paypal.upload = "1";
paypal.business = "me@myaccount.co.uk";
paypal.currency_code = "GBP";
for (var p = 0; p<paypal_arr.length; p++) {
var num = p+1;
paypal["item_name_"+num] = paypal_arr[p][0];
paypal["quantity_"+num] = "1";
paypal["amount_"+num] = "10.00";
}
paypal.send("http://www.paypal.com/cgi-bin/webscr", "_blank", "post");
};
View Replies !
View Related
Flash And Paypal?
Hi, I just posted a reply in one related thread, but I thougth I should be more specific, so I am starting a new one.
I create a flash shopping cart, where the user will select options and customize the product. This part is all handled by flash. What I want to do is to pass the total amount as a single item to Paypal.
this is my code:
Code:
confirmation_mc.order_btn.onRelease = function() {
payPal = new LoadVars();
payPal.cmd = "_cart";
payPal.business = "me@sandradussault.com";
payPal.currency_code = "CDN";
payPal.upload = "1";
payPal.amount = "XX.00";
payPal.send("https://www.paypal.com/cgi-bin/webscr", "_blank", "POST");
}
But it keeps taking me to the Login page, and not in the buy or cart section.
..... i dont understand.....
any ideas?
View Replies !
View Related
Flash And Paypal
Hi Everybody:
I just join this Forum and based on what I have seen it is full of good people and information.
My name is Chip. I am a photogropher and live in Minnesota, yes the frozen tundra. I have put togather a fash site, using Flash 8 prof., and trying to Paypal add to cart with my site.
It does every thing I want except two items, return and cancel. After payment, I want the costumer go to my Thank you page and if they cancel their orders I want them to go to my cancel page. The message I get is 404.
I don't know what I am doing wrong. Can you please help me?
Thanks,
Chip
Here is the AS2 code:
// add to cart
on (release) {
//create the LoadVars that will hold our paypal information
var paypal = new LoadVars();
//specify the info to be viewed.
paypal.cmd="_cart";
paypal.add="1";
paypal.business="chip.mysite.com";
paypal.currency_code="USD";
paypal.amount= "28.00";
paypal "return"] = "http://www.mysite.com/paypal/thankyou.swf";
paypal.cancel_return = "http://www.mysite.com/paypal/cancel.swf";
paypal.item_name="picture 11111";
//send information to PayPal
paypal.shopping_url="http://www.mysite.com/New_Design.swf";
paypal.send("https://www.paypal.com/cgi-bin/webscr","paypal","POST");
}
View Replies !
View Related
Flash Paypal
flash paypal
Hi all,
I'm developing a shopping cart in flash to connect with paypal. The cart side is all fine. When the buy btn is pressed the contents of the basket are recorded in the multi diemensional array so I can pass the information to paypal. Each products info is stored in an array which is then within another array called paypal_arr. This code below is what I'm using to pass the variables too paypal, but in paypal I get an error message
"Please enter amount greater than zero"
Does anyone have any experience with paypal or can offer any advise to why this is happening.
ActionScript Code:
purchase = function () {
paypal = new LoadVars();
paypal.cmd = "_cart";
paypal.upload = "1";
paypal.business = "me@myaccount.co.uk";
paypal.currency_code = "GBP";
for (var p = 0; p<paypal_arr.length; p++) {
var num = p+1;
paypal["item_name_"+num] = paypal_arr[p][0];
paypal["quantity_"+num] = "1";
paypal["amount_"+num] = "10.00";
}
paypal.send("http://www.paypal.com/cgi-bin/webscr", "_blank", "post");
};
View Replies !
View Related
Flash Paypal
Hi, I was wondering if anyone know how to make a quanity input box and submit button that communicates with paypal? Some one showed me how to do this once before so I know it can be done, but I lost the source files when my laptop was stolen...
View Replies !
View Related
Flash And PayPal
I have just created a Flash PayPal button package, to read more information check out http://www.TRPSearchIt.com/paypalbuttons.html I have been able to create these thanks to the kind help of the users on this board answering my few questions. Have a great day!
-TJ [TRP CEO]
www.TRPSearchIt.com
View Replies !
View Related
Flash And PayPal
Where can I find a tutorial explaining the integration of the FULL shopping PayPal process into a Flash .swf ?
OR
Does an extension for integration exist ?
PS : I don't mean integrating a simple PayPal button but the WHOLE set of shopping operations from the first Item selection to the "Thank you!" formula showing that purchase and funds transfer have been completed...
View Replies !
View Related
PayPal In My Flash- Is It Possible?
I set up an account with paypal and can make a donation button on an html sit rather easily. Paypal actually makes a button by writing some code. But how can I get that button in a flash movie? any help on this would be great!
thanks a lot
josh
View Replies !
View Related
Flash Paypal
flash paypal
Hi all,
I'm developing a shopping cart in flash to connect with paypal. The cart side is all fine. When the buy btn is pressed the contents of the basket are recorded in the multi diemensional array so I can pass the information to paypal. Each products info is stored in an array which is then within another array called paypal_arr. This code below is what I'm using to pass the variables too paypal, but in paypal I get an error message
"Please enter amount greater than zero"
Does anyone have any experience with paypal or can offer any advise to why this is happening.
ActionScript Code:
purchase = function () { paypal = new LoadVars(); paypal.cmd = "_cart"; paypal.upload = "1"; paypal.business = "me@myaccount.co.uk"; paypal.currency_code = "GBP"; for (var p = 0; p<paypal_arr.length; p++) { var num = p+1; paypal["item_name_"+num] = paypal_arr[p][0]; paypal["quantity_"+num] = "1"; paypal["amount_"+num] = "10.00"; } paypal.send("http://www.paypal.com/cgi-bin/webscr", "_blank", "post");};
View Replies !
View Related
Paypal And Flash
Hi Everyone,
Does anyone know how to embed the new paypallabs shop feature into an swf?
This is the code generate from paypallabs:
<object classid="clsid:0000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" align="absmiddle" width="215" height="355">
<param name="movie" value="http://storefront.paypallabs.com/store/portablestore.swf?store_id=xxxx"/>
<param name="quality" value="high" />
<param name="FlashVars" value="store_id=xxxx" />
<param name="allowScriptAccess" value="always" />
<param name="allowNetworking" value="all" />
<embed allowscriptaccess="always" allownetworking="all" src="http://storefront.paypallabs.com/store/portablestore.swf?store_id=xxxx" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="215" height="355"></embed>
</object>
View Replies !
View Related
Help Paypal & Flash ?
Hi guys i was wondering if there is anyway to put a Paypal add to cart button in a flash website by just useing a https link in a button in flash.
but i do not know how to convert this to a https link or even if it can be done ive seen some websites do it like this, or if there are any flash components for paypal to help with add to cart :
[Example of paypal addto cart i found somewhere]
https://www.paypal.com/cart/add=1&business=prosaverinc%40cs.com&item_name=Samsung+SF5800D3+Toner+C artridge+Refill&item_number=SF5800D3&amount=12.99&shipping=2.00&am p;shipping2=2.00&handling_cart=3.95&cn=Preferred+ship+to+(optional)',' cartwin','maximize,scrollbars,location,resizable,status');"
but the link expires
[this is what i need in a link in flash]
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://www.jorgensonhobbies.com/images/BM1CARTADD.jpg" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="Andrew@JorgensonHobbies.com">
<input type="hidden" name="item_name" value="WS66 Elite Marker">
<input type="hidden" name="amount" value="509.97">
<input type="hidden" name="return" value="http://www.jorgensonhobbies.com">
<input type="hidden" name="cancel_return" value="http://www.jorgensonhobbies.com">
<input type="hidden" name="cn" value="Any question's or comment's?">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="US">
</form>
any help or suggestions on useing flash with paypal please let me know thanks
View Replies !
View Related
Paypal Flash Component
I want to use the add to cart and view cart paypal components. I have used the provided buttons and dropped the paypal components on top of them. They seem to work fine on their own, that is to say if i purchase one object.
The problem is when i click on one add to cart item it takes me immediately to the paypal page, now if I click on another item from my site it does not respond until i completely close the paypal site.
I would like to be able to buy a couple of items and have them update on the paypal site without having to completely having to close paypal between each add to cart item.
Any help would be appreciated
to view my problem check out www.galleryhomeplans.com
View Replies !
View Related
PayPal Button In Flash
does anyone know how to put the html script of a paypal button into actionscript for Flash MX 2004?
The html script for the button looks like
Code:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but22.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="email@youremail.com">
<input type="hidden" name="item_name" value="Your Item">
<input type="hidden" name="amount" value="135.00">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
</form>
View Replies !
View Related
Paypal Button In Flash
I'm just wondering how I could make a paypal button (via the paypal site) and then attach that HTML code to a shockwave button allowing me to effectively make a flash version of the paypal button. Any help would be great. Thanks.
View Replies !
View Related
Paypal Cart In Flash?
i need to make a custom flash button attach to a paypal cart.
I pritty familiar with actionscripting and advanced in html but need help.
using HTML forms and buttons the code would be:
******
<form name="_xclick" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="image" src="https://www.paypal.com/en_US/i/btn/view_cart.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="display" value="1">
</form>
******
form name="_xclick" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" method="post"
input type="hidden" name="cmd" value="_cart"
input type="hidden" name="business" value="me@mybusiness.com"
input type="image" src="https://www.paypal.com/en_US/i/btn/view_cart.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"
input type="hidden" name="display" value="1"
/form
******
HELP!
"[code]
View Replies !
View Related
Flash Paypal Problem
Hi,
I found some great help on this board with some paypal problems, but there's one problem I can't find a solution for and hoping you guys have some thoughts...
I need to create an add to cart button in flash, I'm fine getting the variables out of flash to sell items in paypal using loadVars, but in order for paypal to generate the actual cart it needs a varibale "add='1'" otherwise paypal doesn't know to add the item to the cart.
I'm sure you can see the problem... if I use "add" as a variable in Flash, flash misunderstands that as "+" and the script won't work.
Does anyone have a workaround or any thoughts.
Thanks in advance.
View Replies !
View Related
Flash - Paypal Check
Hi im making a simple flash-paypal application in which you enter the amount you wish to donate in a Flash cheque and then click send. You should then be redirected to paypal and be able to complete the transaction.. however for some reason paypal keeps hanging even when i simply browse to www.paypal.com
Would appraciate it if someone could check out http://www.experiments.flashmatics.c...al/cheque.html
enter the amount they wish to donate and then click the send button and then let me know if they reach the paypal transaction page succefully with the correct amount specified..
Note after clickinh the send button a paypal.php page will open (which should redirect you automatically within a few seconds)
cheers ..
P.s no need for a donation unless u really wanna lol
View Replies !
View Related
Flash Paypal Integration
greetings,
i have an option to take on an emcommerce site contract. i have done some php a couple years ago, but that is somewhat long forgotten. i am wondering if it is possible to set up a bunch of forms in flash, send the entered text as variables using the POST method, and send that straight to PayPal w/o any cgi scripting. in other words, do i need a middle man (pHp, etc) to interpret what my sendForm function sends from my .swf, or can i just shoot those variables straight from the swf to the paypal site?
View Replies !
View Related
Flash And Paypal Issue
I am making a site that sells T-Shirts in Flash 8. I am using Paypal as the payment method. How can I make it so the user gets to pick the color and the size and then send that information to Paypal? So when we see an order has been placed, we will also know the color and size that they ordered.
Here is the current code on my Paypal "buy now" button:
Code:
on(release){
var paypalObj = new Object();
paypalObj["add"] = 1;
paypalObj.cmd = "_cart";
paypalObj.business = "email1235@gmail.com"; //replace with your business name
paypalObj.item_name= T-Shirt stock number 123ABC "; //replace with your item name.
paypalObj.amount="14.95"; //replace with the price
paypalObj.page_style="Primary";
paypalObj.shipping="5.00";
paypalObj.cn="Comment";
paypalObj.currency_code="USD";
var sUrl = "https://www.paypal.com/cgi-bin/webscr?"
for (var o in paypalObj)
sUrl += o + "=" + paypalObj[o] + "&";
trace(sUrl);
getURL(sUrl,"_cart","POST");
}
View Replies !
View Related
Flash Paypal Buy It Now Button
I have been trying to find a way to make a Flash PayPal Buy It Now button. Looking through the web in general and this board, I have seen examples, but they don't match the code PayPal provided. (For example, my code does not have an e-mail address and it works fine.) Can someone please tell me how to turn the following code into a PayPal Buy It Now button?
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="2648691">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
View Replies !
View Related
Flash And Paypal Question
Hello, I am making site with Flash 8 that sells T-shirts and I am using Paypal as the payment method. I have it setup so that the user can pick the size and color from a drop down menu for each shirt and then when the hit “buy now” it sends the text in the drop down menu they have chosen as part of the description to Paypal.
Example: They pick Red and XLL from the drop downs. Once they hit “Buy Now” and the info is sent to Paypal, the description will say:
Red – XLL T-Shirt for Company X – Product ID 5617.
This is the only way I could think to do this, as I am a fairly new to actionscript. I know there has to be a better way to do this and that is what I am looking for. My problem is right now there are around 40 drop downs and I have to go in and remake the menu each time which is taking forever. If I just copy/pasted them, I would get movie clips and graphics with that same name, which messes everything up when the user hits “Buy Now”. So, can anyone help me understand the correct way I should be doing this?
Here is the code for my Paypal button:
Code:
on(release){
var paypalObj = new Object();
paypalObj["add"] = 1;
paypalObj.cmd = "_cart";
paypalObj.business = "myemail@email.com";
paypalObj.item_name= /:title +" - "+ /:color + " – X Company T-Shirt stock number 2BD06 ";
paypalObj.amount="14.95";
paypalObj.page_style="Primary";
paypalObj.shipping="5.00";
paypalObj.cn="Comment";
paypalObj.currency_code="USD";
var sUrl = "https://www.paypal.com/cgi-bin/webscr?"
for (var o in paypalObj)
sUrl += o + "=" + paypalObj[o] + "&";
trace(sUrl);
getURL(sUrl,"_cart","POST");
}
View Replies !
View Related
Flash And Paypal Shop.
I've created a Flash / Paypal shop that works great. However I'm unhappy with the fact that each time a product is purchased the visitor is taken to the Paypal site to view their basket and then needs to press a "Continue Shopping" button to be taken back to the Flash shop (and not particularly the page they left).
I'd far rather the View Cart option was kept in the Flash site and only when the visitor is happy with the total purchases do they click on a proceed to checkout button which takes them to Paypal site for the first and only time.
I can do all this. The only hurdle I need to get over now is this:
When a "Place in Basket" button is pressed, purchase_x equals that product and x is increased by 1. So when x = 1 and the first product is placed in the basket, purchase_1 = that product and x is increased to 2 etc
Paypal will accept multiple upload of purchases but they must have sequential numbering. So this would work fine:
Code:
paypal.item_name_1=purchase_1;
paypal.item_name_2=purchase_2;
paypal.item_name_3=purchase_3;
paypal.item_name_4=purchase_4;
My problem arises when in the Flash side of the site, purchase_2 is removed from the basket. If paypal.item_name_2 is missed off all the following paypal variables are ignored. So I want to end up with code like:
Code:
paypal.item_name_1=purchase_1;
paypal.item_name_2=purchase_3;
paypal.item_name_3=purchase_4;
Of course there would be more variables than this per product but I hope I'm keeping it simple.
Anyone any ideas on an easy way to achieve this?
Egg
View Replies !
View Related
FLash Button And PayPal
Hallo everybody,
I have created a flash site in Flash 8 where I wil sell some t-shirts.
Now I have created a "Shopping Cart" within PayPal.
PayPal gave me the HTML code that I can use for my "Buy" buttons and "Check Out" button.
Because the buttons of my site are made with Flash which is the ActionScript command that I have to use to include the belowed code?
This code is referred to a Tee called "crazy printer" which cost €30 +€4 for shipping fees
thank you so much for your precious help
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="https://www.paypal.com/it_IT/i/btn/x-click-but22.gif" border="0" name="submit" alt="Effettua i tuoi pagamenti con PayPal. un sistema rapido, gratuito e sicuro.">
<img alt="" border="0" src="https://www.paypal.com/it_IT/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="info@studiosimultaneo.com">
<input type="hidden" name="item_name" value="crazy printer">
<input type="hidden" name="amount" value="30.00">
<input type="hidden" name="shipping" value="4.00">
<input type="hidden" name="buyer_credit_promo_code" value="">
<input type="hidden" name="buyer_credit_product_category" value="">
<input type="hidden" name="buyer_credit_shipping_method" value="">
<input type="hidden" name="buyer_credit_user_address_change" value="">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="lc" value="IT">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>
View Replies !
View Related
Paypal Flash New Window
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.
View Replies !
View Related
Flash & PayPal -- DESPERATE
If you look at my site, www.knotwear.com, you will see an "Order This Shirt" button for each design. The web company that was designing my site is in India and understandably has more important things to worry about right now, but my problem is that I have an Ad coming out in 2 weeks and MUST get this site fully functional.
Since these are t-shirts, I need it to do the following: When someone clicks ORDER THIS SHIRT, they are brought to a PayPal site that shows size options, men's vs. women's shirt and price options.
Is there an easy way to link this to the PayPal shopping cart and let PayPal handle the sizing, gender and price changes?
I know a little Flash, but I need the Action Script for Dummies explanation .
View Replies !
View Related
Making A Paypal Btn In Flash (?)
Hey All,
Anyone know how 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. Thanx in advance for the help!
View Replies !
View Related
Flash Paypal Button
I have a simple button linking to paypal from an html form and I want to place this button into Flash. I found an example that was posted a while back but it didn't seem to work. Basically the button goes to a url but it also has to send some other info as well with the POST method including an encrypted value. Here is what I have tried. Also note that I have deleted some of the Encryption value for this posting for security reasons.
on (release) {
var pp_lv=new LoadVars();
pp_lv.cmd="_s-xclick";
pp_lv.encrypted="-----BEGIN PKCS7-----MIIG/QYJKoZIhvGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheX BhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYCSPDaF/KjciWI5MpzIoc/cvgSLU1DQRiQ=-----END PKCS7-----";
pp_lv.send("https://www.paypal.com/cgi-bin/webscr","_blank","POST");
}
View Replies !
View Related
Flash/Paypal Component
Hiya folks [sorry about the length]
I am currently building two Flash eCommerce sites for some friends and I am not quite sure which way to go. I found this component, which is relatively cheap and seems to be feature-rich and totally customizable (which is more than I can say for most of the flash shopping carts I have seen for sale).
Anyway, does anyone have any experience with ANYR&D's PPCC Flash component that they would share with me? Even though the cost is small, I don't want to spend money on something that won't work well. The two sites have a lot of items for sale and will be updated frequently. I have scoured the Internet for Paypal/Flash topics and seem to find mostly "Buy Now" Buttons for individual items, but I am looking for something more scalable and possibly even something that could be administered by a layperson using XML or MySQL and ASP or PHP.
I am pretty sure that I have already looked at/tried most of the tutorials out there (but maybe not!), and I have yet to have any luck with any of them.
So, what do you think is the best way to go about building a reusable Flash eCommerce site? Not looking for a FLA, just some guidance (although if you want to post a FLA I wouldn't be upset).
Any help is greatly appreciated!
_aA
View Replies !
View Related
|