Using AS3 to connect to a payment page
I'm trying to integrate the code of an 'authorize.net' payment button into a Flash website via actionscript. A button (that worked) was already setup with a navigateToURL command and it worked with another payment company but authorize.net wants form code submitted:
<i><form name="PrePage" method = "post" action =
"https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx">
<input type = "hidden" name = "LinkId" value
="00000=00000-0000-abcd-etc" /> <input type = "submit" value
= "Pay Now" /> </form></i>
How do I submit/create the form (if that is what I'm doing) from within the Flash site in AS3?
