PDA

View Full Version : Howto refer to stage object on a different frame?


danimal
01-29-2006, 01:27 PM
Hi, I'm just starting to learn Flash to convert a project from work after a few years of Java, and have a question about how to refer to stage objects. I have a textarea on one frame, but some actionscript on a different frame needs to add some text to it. How would you refer to that textarea from a different frame than the one it lives in, or is its scope only local to that one frame?

Thanks,
Dan

Scottae
01-29-2006, 03:15 PM
The textarea has to exist where the actionscript is being called.

danimal
01-29-2006, 04:05 PM
Ok, thanks.