|
-
sending input text to dynamic text
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?!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|