Hi Karen,
Unless I'm misunderstanding you, I would still have to write out an action for
each state
that way like:
map["OR" + i].onRelease=function()
{
my_xml.load("OR"+this.i + ".xml");
}
What I'm trying to do is write a single function for all 50.
--- In FLASHmacromedia@yahoogroups.com, karen berx <irowake_iruka@...> wrote:
>
>
> add a variable to each of your childmovieclips
> map.WA.id=i;
>
> Then you can write your function ones as:
> map["WA" + i].onRelease=function()
> {
> my_xml.load("WA"+this.i + ".xml");
> }