I have 3 movie clips each containing it’s own variables. I want them all to be sent to PHP. The problem is that with the script I’m using it will only send variables contained in a specified movie clip. With the code placed on the submit button this is how I send each mc variable to php:
on (release) {
mc_name.loadVariables(“analysis.php”, “POST”);
mc_name.onData = function() {
nextFrame();
};
}
Is there any way to consolidate all 3 mc variables into 1 action script to be sent to PHP?