has anyone had any luck passing a variable out of Flash 5.0 into it's host php page?

I've tried using Flash's getURL on press of a button and setting variables in the url and telling Flash to send variables using GET, but no luck.

Any suggestions are appreciated.

    nevermind, I got it... you just set the variable using Flash actions before calling the getURL action and pass them via GET or POST...

    also calling the php file from localhost instead of C: helps a lot 😉

      You can also use movieClip.loadVariables("file.php", "POST || GET"); instead of getURL("http://www.location.com/", "POST || GET"). Use this if you don't want your variables to replace your movie or get opened in a different window 🙂

        Write a Reply...