Ok I solve one issue then counter a new one… This might be the wrong place to post this but hey maybe someone knows…
Im trying to have PHP send flash variables…
<?
print “working=1”;
?>
A very simpel script… But here is the deal…
It’s an external SWF that makes this call, and that external SWF makes the call from a button within a movieclip (animated button), but PHP should send the variable to a different movieclip in the same external SWF. That movie clip is looping checking for response from the PHP script and then redirecting that to the main stage to change frame.
Im assuming the PHP script should be like this.
<?
print “_root.test1.test2.working=1”;
?>
test1: the movieclip the external SWF is in.
test2: the movieclip where the PHP response check is done.
I’m assuming I do not need to set the variable just use it.
Hope you get it all…
Thanx