btn is a variable with the path to all my dynamicaly made movieclips. But inside each of these dynamic movieclips is dynamicly created textfields with instance names. But I need a way to trace them how can this be done.
I tried this but did not work.
your textfields arent in the same movieclip, so instead you’ll have to go through each of the created movieclips and get the textfield out of them. Since you are putting them in their own movieclips, you wouldnt have to give them each a unique name since that is done through the movieclip their in. Then you just cycle through collectionMenu.CbuttHolder and snag the names of the textfields of the movieclips that have them (or just the names of the movieclip itself…) its really hard to say because you never really explained what you are trying to achieve
I want to change the text field color when you rollover the button.
I need to do this without changing the color of the (btn) or mc itself so this is why I wanted when you rollover a button it finds its appropriate text field inside this btn and change the text field color.
Then you just cycle through collectionMenu.CbuttHolder and snag the names of the text fields of the movie clips that have them (or just the names of the movie clip itself…) its really hard to say because you never really explained what you are trying to achieve
Well the first part of this quote is what I’m after. I can easily get the mc _name but I need the text field inside the mc.
Thanks for your patience.