Credit Card
I want to be able to validate credit cards via flash. I want my visitors to be able to enter there credit card info in a flash form, and have the results of the process come back in the same movie. I do not want any pop-up windows with external html forms. What is the best way for me to do this? I have PHP scripts, and JavaScripts to verify card numbers. Can someone teach me how to interface one of them with flash? Or is there a way to do all of the scripting in flash. Any one familiar with the Luhn MOD 10 algorithm?
Any help would be appreciated.
Thanks.
FlashKit > Flash Help > Flash MX
Posted on: 07-02-2002, 04:21 AM
View Complete Forum Thread with Replies
Sponsored Links:
Credit Card
Hi
I want to sell something over the internet but I want to find a company that deal with my customers credit cards, like checking to see if the credit card are valid, taking care of the security issues, billing ect.
1. Can some on tell me if this service is provide it by companies on the net?
2. Can some one tell me where can I find one of these companies?
Thanks
Alex
View Replies !
View Related
Credit Card-No Pay Pal
I am sorry for the post- I am sure it must have been posted a million times- but I have spent hours trying to find the answer.
My client does not want to use pay pal. The site is built in all flash. How would I go about accepting the credit card immediately. The way a bigger company have there own store. Thanks
View Replies !
View Related
Credit Card Payment
I'm using Flash MX and want to process a credit card payment.
The payment gateway service I'm using is "Authorize.Net"
URL: "https://secure.authorize.net/gateway/transact.dll"
How can I process the payment?
How can I process the payment and return to Flash?
Thanks
View Replies !
View Related
Credit Card Services?
I am currently working on a project in which the customer wants to use some sort of credit card sign up , so the user has to pay to view certain pictures of her site. What is the best way to go about setting this up in flash? can it even be done in flash? I was thinking i may have to make a seperate html page for mebers or people who need to pay for the site?? I am completely clueless as to how this works any feedback would be greatly appreciated!!
PS: the customer is trying to create an account with http://www.verotel.com
I assume i will need some sort of sewrvice like this in order to have credit card transactions???
thnx
View Replies !
View Related
Credit Card Handling
I have a client who wishes for an order form, very similiar to this
Ive never dealt with credit card numbers before within Flash, how secure is this, anyone worked with this before, anyone got any advice, any tutorials etc etc??
Any help appreciated
View Replies !
View Related
Credit Card Option
There is a lot of sites using CC charge option, but I´m not sure how could this be done. I have an idea, but I´m not sure if Is the right one.
I think the form for process the credit card should go in a SSL area of the server (I think the SSL option protect the transaction) once the CC # is send there should be people that process the order manually.
But I feel a little clueless in the CC process. It would be great if someone could give me a guide for this kind of stuff.
The option is for a hotel.
View Replies !
View Related
Credit Card Forms
hey fellas
I am workjng on web site were credit card form will be used.
The thing is that I have no clue on how to make one.
any help or tutorial will be appreciated
thanks
View Replies !
View Related
Credit Card Services?
I am currently working on a project in which the customer wants to use some sort of credit card sign up , so the user has to pay to view certain pictures of her site. What is the best way to go about setting this up in flash? can it even be done in flash? I was thinking i may have to make a seperate html page for mebers or people who need to pay for the site?? I am completely clueless as to how this works any feedback would be greatly appreciated!!
PS: the customer is trying to create an account with http://www.verotel.com
I assume i will need some sort of sewrvice like this in order to have credit card transactions???
thnx
View Replies !
View Related
Credit Card Check
I'm trying to write a function called checkCreditCard which could be used in a website for an online store. I'm trying to make the function so it will check whether the credit card number typed in by a user is valid. I need to write a function that has one parameter: an account number (int) that will check whether the account number is valid and will display a trace statement that gives the result (e.g. credit card number 51312 is not valid)
I know I need to use the division operator and mod operator (/ and %) to strip off each digit so that the first 4 digits can be added to find the sum and then use the mod operator (%) along with an if-else statement to determine whether the remainder of the sum divided by 9 is equal to the last digit, so that the number is valid.
I've gotten some help for how to set it up, but am still confused at how to finish this.
function checkCreditCard ( acctNumber: int )
{ var num: int = acctNumber;
var d1: int = num / 10000; // d1 will now be the first (leftmost) digit
num = num % 10000; // num will now be the four rightmost digits
Any help would be greatly appreciated!
View Replies !
View Related
Validated Credit Card
Hi guy's, I have problem in ActionScript. How do you validated a credit card or a paypal email address. I want to make a personal sore were to sell me flash work and I need a way to validated the credit card and then get the buyer money to my cont. But for now lets just make the validation. I have look over the web and fond only JavaScript code, but want to use only actionscript because my site is full flash.
Thank you for reading this post and hope you know the solution,
Adrian
View Replies !
View Related
Flash And Credit Card Sales Etc
Hi all,
can anyone advise me on the best way to go about incorporating a sale of items within a flash site??
i have a shopping basket that, using a myriad of arrays, adds up all that i drag and drop into it etc etc -
i can then display these items nicely within a "drawCart" function.
So i have all my customer's requirements in the flash player's memory.
Can anyone advise me on the best corse of action from here??
How would "netbanks" for example like to recieve credit card details from my flash movie?? - would such an organisation like to work with flash at all??
what variable format would they require?? etc etc
Any advice would be greatfully recieved
thanks in advance
gilesb
View Replies !
View Related
Actionscript & Credit Card Numbers ?
Does anyone have a script where it checks an input text box to see if the number entered is a valid credit card number ?
I know there is a formula to check card numbers but im not sure what it is and how i would put it in to an actionscript ?
Thank you anyone out there who can help maybe ?
P.
View Replies !
View Related
How To Validate Credit Card Number
I have a question to use the following code.
Like below code, I would like to validate a credit card number.
I have a button and text field which variable name is "ccno".
so, I coded like this when button is released.
But it seems not woking properly!
What did I wrong?
////////////////////////
ActionScript:--------------------------------------------------------------------------------on (release) {
// i want to see if it is a valid card
if(ccno.isCreditCard){
//ok if i got here the string method (isCreditCard returned true)
if(ccno.isVisa){
msg = "OK";
trace(OK);
}else if(ccno.isMasterCard){
//do mc processing
}else if(ccno.isAmericanExpress){
//...
}else if(ccno.isDiscover){
//...
}else{
msg1 = "Not Valid";
trace(msg1);
}
}
}
//////
String.prototype.isCreditCard = function(){ //True if credit card number passes the Luhn Mod-10 test.
var st = this.toString();
if (st.length > 19)
return (false);
sum = 0; mul = 1; l = st.length;
for (i = 0; i < l; i++) {
digit = st.substring(l-i-1,l-i);
tproduct = parseInt(digit ,10)*mul;
if (tproduct >= 10)
sum += (tproduct % 10) + 1;
else
sum += tproduct;
if (mul == 1)
mul++;
else
mul--;
}
if ((sum % 10) == 0)
return (true);
else
return (false);
}
String.prototype.isVisa = function(){ //True if string cc is a valid VISA number.
var cc = this.toString();
if (((cc.length == 16) || (cc.length == 13)) && (cc.substring(0,1)== 4))
return cc.isCreditCard();
return false;
}
String.prototype.isMasterCard = function(){ //True if string cc is a valid MasterCard number.
var cc = this.toString();
firstdig = cc.substring(0,1);
seconddig = cc.substring(1,2);
if ((cc.length == 16) && (firstdig == 5) && ((seconddig >= 1) &&(seconddig <= 5)))
return cc.isCreditCard();
return false;
}
String.prototype.isAmericanExpress = function(){ //True if string cc is a valid American Express number.
var cc = this.toString();
firstdig = cc.substring(0,1);
seconddig = cc.substring(1,2);
if ((cc.length == 15) && (firstdig == 3) && ((seconddig == 4) || (seconddig == 7)))
return cc.isCreditCard();
return false;
}
String.prototype.isDiscover = function(){ //True if string cc is a valid Discover card number.
var cc = this.toString();
first4digs = cc.substring(0,4);
if ((cc.length == 16) && (first4digs == "6011"))
return cc.isCreditCard();
return false;
}
String.prototype.isAnyCard = function(){ //True if string cc is a valid card number for any of the accepted types.
var cc = this.toString();
if (!cc.isCreditCard())
return false;
if (!cc.isMasterCard() && !cc.isVisa() && !cc.isAmericanExpress() &&
!cc.isDiscover()) {
return false;
}
return true;
}
String.prototype.isCardMatch = function(cardType){ //True if Number is valid for credic card of type Type.
var cc = this.toString();
cardType = cardType.toUpperCase();
var doesMatch = true;
if ((cardType == "VISA") && (!cc.isVisa()))
doesMatch = false;
if ((cardType == "MASTERCARD") && (!cc.isMasterCard()))
doesMatch = false;
if ( ( (cardType == "AMERICANEXPRESS") || (cardType == "AMEX") ) &&
(!cc.isAmericanExpress()))
doesMatch = false;
if ((cardType == "DISCOVER") && (!cc.isDiscover()))
doesMatch = false;
return doesMatch;
}
View Replies !
View Related
Credit Card Number To E Mail ?
Im making e commerce web site in flash, and I would like on the final stage of shopping to send customer info and CC number to my email address using flash and mail php script.
Can you tell me is this safe? and can some hackers easily steal those CC numbers?
View Replies !
View Related
Collecting Credit Card Data
I'm a graphic designer and am new to flash. I simply need to create a form with Name, address, credit card number, three digit code, expiration date, and digital signature fields.
I just need to collect this data. I don't need the form to process anything. What is the simpliest way to do this? Is php necessary or can I just have all submitted text sent and saved to a page? If so how do I do this?
View Replies !
View Related
Credit Card Processing In Flash
hey i was wondering if anyone in here knows how to credit card processing in flash, i would prefer to use the paypal payflow link. but any credit card processing will be ok. i need to post all the CC data and send to verify and then recieve a variable telling wether it was authorized or denied, any helpo will be deeply appreciated. thanks.
Alex M.
View Replies !
View Related
Credit Card Statement Simulator
Hi there everybody
I'm working on a little project where I have to simulate a credit card statement and show how making minimum payments for 6 months doesn't lower your balance very quickly. They can scroll through a bunch of items to pretend 'purchase'. When they're done shopping, the code is supposed to calculate the interest being charged, and the minimum payment due, until the balance is gone or six months have passed... which ever comes first. If they only spent $20.00, they'll pay it off before 6 months is up. If they spend a ton of money, then at the end of 6 months they'll have a statement that has not decreased significantly.
My calculations aren't working. It's boggling my brain. I've been testing it with $100 as the total for all purchases. Rather than a nested function, maybe I should be using a for loop to count through the 6 months.
I've pasted in sample code with a static $100 as the purchases. I'll attach a file too.
Any help would be absolutely fabulous.
Code:
//initial values for variables and symbols.
statementNumber=1;
mindue_rate=0.025;
PRFC=0.049827;
_root.allPurchases=100.00
//initial calculation for first month (because there is no interest on the first month).
month1=_root.allPurchases;
month1_mindue=month1*mindue_rate;
if(month1<10.00){
tipBox2.tipBoxText.text="Your total purchases were $"+_root.allPurchases+". Your balance is less than $10.00. That means you pay the total amount charged to your credit card on this bill. You have no balance to carry forward to month two. If you want to find out how interest can accumulate, do some more shopping and click again to view this statment. To learn more about this statement, roll your mouse over the terms.";
tipBox2.pointerRight._visible=0;
tipBox2.pointerLeft._visible=0;
//statementStatus._visible=100;
//statementStatus.definition_txt.text="Your balance is less than $10.00. That means you pay the total amount charged to your credit card on this bill. You have no balance to carry forward to month two. If you want to find out how interest can accumulate, do some more shopping and click again to view this statment.";
new_balance_total.text=month1
amount=month1;
}else if((month1>9.99)&&(month1_mindue<10.00)){
//statementStatus._visible=100;
//statementStatus.definition_txt.text="You pay 10.00 bucks";
month1_mindue=10.00;
PRFC_calc=(month1-month1_mindue)*PRFC;
month1_carryForward=(month1-month1_mindue)+PRFC_calc;
amount=int(month1_carryForward*100)/100;
calcAmounts();
}else {
month1_mindue_round=int(month1_mindue*100)/100;
trace("You pay the mindue "+month1_mindue_round);
PRFC_calc=(month1-month1_mindue)*PRFC;
month1_carryForward=(month1-month1_mindue)+PRFC_calc;
amount=int(month1_carryForward*100)/100;
calcAmounts()
}
function calcAmounts(){
statementNumber+=1;
if (amount<10.00){
//they can't carry a balance for 6 months (and pay only the min due) because they didn't purchase enough items. statementSaus informs them of this and what month they carried a balance to(from 2-6)
//statementStatus._visible=100;
//statementStatus.definition_txt.text="Your balance is less than $10.00. That means you pay the total amount charged to your credit card on this bill. You have no balance to carry forward to month two. If you want to find out how interest can accumulate, do some more shopping and click again to view this statment.";
tipBox2.tipBoxText.text="Your total purchases were $"+_root.allPurchases+". Your current balance is less than $10.00. That means you pay the total amount charged to your credit card on this bill. You have no balance to carry forward to month 2. If you want to find out how interest can accumulate, do some more shopping and click again to view this statment. To learn more about this statment, roll your mouse over the terms.";
tipBox2.pointerRight._visible=0;
tipBox2.pointerLeft._visible=0;
}
else if((amount>10.00)&&(mindue<10.00)){
amountMindue=10.00;
trace("You pay 10.00 bucks for statment number "+statementNumber);
PRFC_calc=(amount-amountMindue)*PRFC;
amount_carryForward=(amount-amountMindue)+PRFC_calc;
amount=int(amount_carryForward*100)/100
calcAmounts();
}
else {
amountMindue=amount*0.025;
trace("this is the calculation for month"+statementNumber+" and the decreasing minimum due is "+amountMindue);
PRFC_calc=(amount-amountMindue)*PRFC;
amount_carryForward=(amount-amountMindue)+PRFC_calc;
amount=int(amount_carryForward*100)/100;
if(statementNumber<7){
calcAmounts();
}else {
new_balance_total.text=amount;
//statementStatus._visible=100;
//statementStatus.definition_txt.text="This is what your statment looks like after paying only the minimum balance for 6 months. The periodic interest rate (4.9287%) is twice that of your minimum payment due (2.5% of your balance), makes it difficult to reduce your balance. "+ month1;
tipBox2.tipBoxText.text="Your total purchases were $"+_root.allPurchases+". This is what your statment looks like after paying only the minimum balance for 6 months. The periodic interest rate (4.9287%) is twice that of your minimum payment due (2.5% of your balance), makes it difficult to reduce your balance. To learn more about this statement, roll your mouse over the terms.";
}
}
}
View Replies !
View Related
Processing Credit Card Orders
First off, my apologies if this is in the wrong section. I wasn't sure where to post this....
I have a restaurant client I've done a site for and they have a page for gift certificates for their customers. Currently there is just a form the customer fills out and they are then called back by the restaurant.
The client wants to set up the page to process the orders online. I've never been down this road before. Is there a decent online ordering service I can hook them up with? I expect there will only be the occassional order but I want to make sure they have no issues with matters of fraud or misplaced orders.
Anyone had any experience with this?
Mucho thankos!
View Replies !
View Related
Amfphp - Credit Card Payments
New to flash. Looking to develop a flash site to accept credit card payment possibly using paypal. Some other posts I have seen makes me think using amfphp would simplify the proccess.
Am I going in the right direction?
Best tutorials for setting up amfphp?
Any suggestions?
Thanks
View Replies !
View Related
Flash -> Merchent Tools (credit Card Checkouts)
Sorry for the reposts (Ive seen this question a million times) but I have a few follow ups. I have a flash ECOM site that isn't using external DB. I have x items with prices an item Names... etc basic stuff. They have a small shopping cart in flash, basically just an array of data. Upon checkout I wanna open a secure nonFlash page and send POST data of the user's purchase list.
quesitons:
1. What is a GOOD, reliable merchent tool you guys can suggest?
2. Is it as simple as:
Code:
getURL("somePage.php?item1=book&quantity=2");
I've tried using both post and get, and I cant seem to hide the query strand...
Thanks alot guys.. any help would be great
View Replies !
View Related
ECommerce; Secure Payment; Credit Card Payment ...
Hello,
I would like to implement an ecommerce system on a Flash site.
Knowing nothing about that, I’m coming to you.
I mean I know how to do my ‘shopping cart’ interface (including some PHP scripts, if needed). But what I do not know is about the secure payment and online credit card payment.
I have heard about ‘PayPal’. Is that just an eCommerce account where I have to send the information coming from my Shopping Cart interface ?
For sure I still searching information on the internet by myself, but if some people here have some advices or explanations on how it works, it would be really appreciate.
Cheers.
View Replies !
View Related
[F8] Memory Style Card Game Card Flipping Issue
Hey guys,
I need a little help with a project I'm doing for school. I'm designing a memory style card game where you flip cards over and if they match they go away and stuff. You know what I mean. Anyway, I can't figure out how to tell both cards to revert to their original state if you guess wrong.
I have the last card you pressed flipping back over no problem. It's just the first one that won't do anything and I can't figure out how to reference it.
If anyone can help that'd be great.
View Replies !
View Related
Using Credit Cards?
Does anyone know how to set up a credit card service on an
all flash site????
is it a hard process? and, Does anyone know of any books, tuts, or examples of it on the web?
I would love to learn how to suggessfully implement it!
Thanks.
View Replies !
View Related
Processing Credit Cards
Hey guys,
The thread about the porn actress got me thinking a little (not like that , well okay manybe ). What is the easiest way to process credit card information from a site? I have a couple of friends that would love to sell CD's / DVD's through their site but i have never done it because i don't know how to process the credit card info. Does anyone know of some services (e.g. PayPal) that would be really good for this kind of stuff?
Thanks for the hand (not like that).
FG
View Replies !
View Related
Giving Credit To Macromedia On A CD
Ok, I created a Macromedia Flash MX multimedia presentation for a CD that our church band is creating and selling. Now, does anyone happen to know what I need to do (if anything) to credit Macromedia for using Flash MX both in the presentation and on the CD cover itself? I'm not sure and I want to make sure we're safe since we'll be selling the CD. I did write to Macromedia, but no telling when I'll get a response and we're kinda tight on time.
If anyone knows, I would be most appreciative.
View Replies !
View Related
Movie Sytle Credit Text
Hello All,
I am looking for some direction in creating a text field that scrolls like movie credits. I have an external .swf that is a box, I also have another .swf that is the text animation. When I load the movies, it obviously displays everything, even outside the working pallet area. Is there an easier way to do this. I just want to make sure as the text field scrolls everything below the box doesn't show up.
Thanks,
Derek
View Replies !
View Related
Accept Credit Cards From Flash Site
I was just wondering if anyone on here had experience of accepting credit card payments from a flash site. I currently have paypal set up at the moment, but would like a better solution, where i can securely accept credit card payments.
my site is:
www.boreal.org.uk
I'm open to suggestions!!
Thanks
View Replies !
View Related
Timed Video Chat Session With "credit" Payment System
hey guys,
I'm setting up a site that is structured much like an online dating service. The user purchases credits and is able to use them to engage in a video chat with another user.
Now, the site is html based but, when a user chooses to enter into a video chat session, he submits his credits and is directed to another html page that contains the video and chat areas as flash movie (connected to a flash communication server).
Once time runs out, an html message window would pop up asking if the user wants to continue the session (for additional credits) or if they would like to end it. If they continue, they submit more credits and continue chatting. If they choose to end the session, they are directed back to another html page.
In other words, most of the programming is done within the html/asp code. I'd like to keep the flashcomm programming to a miniumum.
I'm not the most advanced-level programmer so I need to know the simplest way to do this. Am I on the right track?
Thanks very much for your help. I really appreciate it!
artane
View Replies !
View Related
AS Help Needed In Game(i Will Give Credit In Game If You Help)
ok so basicly this is my game so far
23.swf
my probelm is that i want to make my charcter a flame and the tips of his head will move depending on the direction you are going.
So here is basicly this what its like
Moving left-Flames bend to right
Moving left and down-Flames bend at an angle between the left and down
Moving Down-Shorter Flames
Moving Up-Stretched Flames
etc...
ill put borders on after i get the flames down
View Replies !
View Related
E-card
Can someone tell me how to create e-cards in flash or is there something like a tutorial somewhere?
I want everybody to be able to use my e-card(s). Each person will personalise his e-card with his own text...
Thnx...
View Replies !
View Related
E-card And ASP
I made changes on e-card tutorial which was writing in Cold Fusion to ASP and for some reason it send the email but the link on the email is not showing the e-card, here's the link...
http://www.nodoubtdesign.com/e-card.swf
Please let me know what's wrong with it
Thanks,
Sonic
View Replies !
View Related
E-card
I'm trying to make an e-card. I can make the movie, but don't know how to make it so that someone can e-mail it to another person, with some info in the body of the e-mail...Is this really easy, or am I going beyond Flash's capabilities?
View Replies !
View Related
E-card
Dear all,
is it somebody known how to do the flash e-card with asp server,
i am non-programming base flash user, need help, urgent.
jeand
View Replies !
View Related
E-card
Is it possible to do in Flash MX/asp an e-card set up where people can choose a picture then fill in their details etc and then that picture/animation be sent to an email address that they enter?
If so, how?
Cheers
View Replies !
View Related
B'day E-card
Dear All..
i'm new in flash & i would like to created b'day card from flash for my girlfriend. Does anyone can help me?
Maybe in *.fla file or other.
Thanks Before.
View Replies !
View Related
E-card Tut. ?
Hi Im writing in regards to the tutorial on sending e-cards. I have it working to some extent...So far the user can enter customized text and then an email address for the person who is to recieve the card. The recipient gets an email notifying them about the e-card...BUT...cant retrieve it.
I understand that the card is stored in a databank on my website, but how do i figure out where to tell it to go. And after that how do I direct the recipient email to that databank. I think Im real close I just need to connect everything. As of right now I havent created a databank on my site, is that where I need to start?
thanks
eric
View Replies !
View Related
E Card
Okay, this is something i've always wanted to know. How do u make those nifty greeting cards that u get in ur email from friends. Is there a specialized programme that u use or is flash capable by itself.
View Replies !
View Related
E-card Site
Ok - I have available to me generator and flash 5. i want to create a flash movie that people can type a message, move things around, etc. and then export this to a jpg. No problem exporting an swf to a jpg with generator. BUT if I want to record where the objects were placed, and the message, I have no idea how to pull that into generator. Is there a way to save an swf to the server after it has been manipulated. generator loads the swf and ignores the variable I try to pass to the flash piece. Can anyone help?
View Replies !
View Related
BMP Card Falling
I want to import a number of .BMP files into a flash movie.. and have each as a movieclip (so far so good (I think))
But in the movie I want to be able to treat each clip as a card.. ie the card is standing up.. but when hit it falls back.. I'am sure I could do this effect with a simple tween.. but because I'll have a movieclip for each .BMP this would be lots of work.... can I do it in Script???
all (all!!) I would need to do is have the top of the card shrink while the bottom edge remains the same.. and have the left and right edges follow the top edge shrink... I dont really think I can do this.. but perhaps you know a method?
View Replies !
View Related
Flash E-card
How does one create a Flash e-card? Are there any special publishing rules? Also, are there any special ways to attach it do your email message?
thanks for any info!
View Replies !
View Related
E-card With Variables
hi i made an E-card creator that uses a JSP page to send the E-cards directly in the inbox, this works, but i want to send 2 varibles with the E-card is it possible to send the variables in the email message so i can let the E-card read them from the email??
thanks
View Replies !
View Related
|