I recive value’s from a php-file into a movieclip called VarClip embedded in root via a submitbutton with this action:
LoadVariablesNum(“name.php”, _root.VarClip, “POST”);
The value’s are received there because I have dynamic-text boxes checking them…and they fill with the appropiate values…
so far so good…
But I need the values received to be available on a global-level so I can share them with other Clips in my Flash movie as well…
Is there a way to bind those values to global values when the arrive??
for exaple when I receive value pName from name.php:
_global.gName = pName
This doesn’t seem te work though…
please help…someone…
thnx a million.