Hi everybody,

this question should be very easy to be fix.
I have a page, that contains movieclip with a input textfield in it. And a other page with a movieclip with a dynamic textfield in it.
What i want is the text i type in the input, i want it to be shown, in the other page, in my dynamic textfield.

This works if they are on the same frame:

btn.onRelease = function()
{
DynamicField.text = InputField.text;
succes.text = "succes";
}

now i tried this:

btn.onRelease = function()
{
_root.show.DynamicField.text = InputField.text;
succes.text = "succes";
}

but it won't work!

does anyone have a advice?!