|
-
i don't know, why this doesn't work:
i have 2 mc, one nested inside the other.
in the parent timeline i define a variable (isevent):
isevent = "no";
and in the second mc i need to know that value of isevent:
if (_parent.isevent = "no") {
gotoAndPlay (2);
} else {
gotoAndStop (1);
}
does anyone know what's wrong?
thanks
leaf
-
You need an extra '=' sign
if (_parent.isevent == "no") {
gotoAndPlay (2);
} else {
gotoAndStop (1);
}
-
:-D
thanks!!!
i knew i overlooked something obvious. i guess i'm just working too much ;-)
no concentration any more.
()0Oo :-(
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
|