hey. i have a login set-up that’s inside a movieclip that’s inside another movieclip, like so:
Main Timeline {
MC1 {
MC2 {
login (button sends variables to php script)
Status (dynamic text field, based off php script)
}
}
}
if the php script says <? print: “MC1.Status=whatever” ?> and Status is in MC1, it’ll work.
if the php script says <? print: “MC1.MC2.Status=whatever” ?> and Status is in MC2, it will not.
all i want to do is to print to Status through MC1 and MC2, can you only pass through one MC??