vote up 0 vote down star

Hello Everyone,

I have successfully integrated PayPal Express into a Flex application. In DoExpressCheckoutPayment.php, I have the following JavaScript line of code that will not execute:

window.opener.window.document.getElementById('index').paymentComplete();

'index' - http://mysite.com/index.html# contains index.swf 'paymentComplete()' - the function that finishes processing the transaction

Has anyone successfully activated callback methods back from a popup to a Flex application using JavaScript?

Thank you in advance for any help,

Orville

flag

43% accept rate

3 Answers

vote up 0 vote down

SWFAddress would be a really good solution for this.

link|flag
I did not see anything there related to my problem. I probably did not explain the scenario well enough. – unknown (google) Oct 6 at 3:37
vote up 0 vote down

In Flex, the address in URLRequest was absolute (http://mysite.com/phpfolder/) and not relative (/phpfolder) to the SWF. For some reason JavaScript requires the relative URL for the following line to work. I am not sure why.

window.opener.window.document.getElementById('index').paymentComplete();
link|flag
vote up 0 vote down

If you can get the popup to call a JS method in the html page that holds the flex app, you can use addCallBack method of the ExternalInterface class to make that JS method communicate with the flex app.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.