on my flash i have a button "subscribe" is it possible to post a form that goes directly to pay pal . . .
i am having trouble figguring out what to use for
<input type . . . ? my client wants it and i cannot get it
Thank you
loren
Printable View
on my flash i have a button "subscribe" is it possible to post a form that goes directly to pay pal . . .
i am having trouble figguring out what to use for
<input type . . . ? my client wants it and i cannot get it
Thank you
loren
I haven't looked at the pay pal form but it may be possible to do this.
What you need to find is where the form is being sent to. You will find this in the HTML for the pay pal form in the submit action.
second you will need set the variables by finding out what vars sent in the HTML form are named. You will need to name your text boxes the so that they corelate to the names of the HTML form. If there are any hidden variables you will have to set those with actionscripts.
Thats about it other than looking at the HTML form to see if it uses get or post.
[Edited by johnie on 02-02-2002 at 12:15 AM]
Try
on (release) {
loadVariablesNum("yourScriptURL", 0, "POST") ;
getURL("yourRedirectPageURL") ;
}
I am fairly sure loadVariablesNum is not supported.