Hi everyone,

Here's something that's stumping me, perhaps people here can help me. Let me explain the setup:

There is a dynamic text box called, for example, myText stored inside a movieclip that is called myMovieclip. Now, I simply want to change the text of the dynamic text box within the movieclip. Yes I know:

PHP Code:
_root.myMovieclip.myText.text "Hello!"
The problem that I have however, is that the instance name myText is stored in a variable, lets call it myVariable. So in very simple layout, it looks like this:

PHP Code:
myVariable "myText";

_root.myMovieclip.myVariable.text "Hello!"

That of course doesn't work. Can anyone enlighten me?