How would I go about triggering a function from a PHP file?
It's a send mail script that works fine ... but "echo "_root.myFunction();";" doesn't do the job.
Any ideas?
Thanks :)
Printable View
How would I go about triggering a function from a PHP file?
It's a send mail script that works fine ... but "echo "_root.myFunction();";" doesn't do the job.
Any ideas?
Thanks :)
Hi,
all you can normally do is send a variable, and make the movie do something when it receives the variable.
Like
if(status == 'ok') gotoAndPlay('sent');
Note that using a loadvars object is a better choice than loadvariables - you can put this line into the onload handler
Musicman
Thanks Musicman ...
How will the MC know to listen for the variable sent in by the .php file?