Skip to main content
Inspiring
November 30, 2006
Question

send data from flash to a popup ASP page

  • November 30, 2006
  • 1 reply
  • 227 views
how can I send data from a flash webpage to an ASP page which has to open in a popup window.

I can do them both seperatly, but how to integrate those 2 in 1....

Here's my script...


This topic has been closed for replies.

1 reply

Inspiring
December 1, 2006
I'm not sure if this will work, so you'll have to forgive me if I'm way off here. I use php for all my server-side goodness. I recently was doing sort of the same thing, but what I did to solve it was this (oversimplified of course)...

variableSTRING = "?variableA=valueONE&variableB=valueTWO";

getURL("javascript:popup(' http://test.php"+variableSTRING+" ','myPopUp',800,600)");

does that help?