loadVariables from nested and multiple mc´s

Hi,

Is it possible to loadvariables from multiple timelines/mc´s

Basically I have a form_mc which contains 10 small mc´s with each having 3 variables.

If I write

form_mc.loadVariables(“email.php”, “POST”);

it doesnt return any variables to me, I guess because the variables are one layer of mc´s deeper.

if I write

form_mc.small_1_mc.loadVariables(“email.php”, “POST”);

it returns the 3 variables from small_1_mc (but not from the other 9, of course I didnt expect it to, but just to illustrate what I am after).

How do I make it return all 30 variables in the same PHP-email?

Any advice is very welcome…