hi!
i've been working on an application where i use a variable to get to a specific part of the application. now the name "fullservice" is nested within two different parts - in the mc_navigation_services movieclip (that is where the button calls the action to open the file nested in another movieclip). the text i have is nested within two other movieclips (all not on the main timeline). it all happens in frame 4 of the main timeline but if i call frame 4 and then say _root the specific frame in the movieclip it stops at frame 4 of the main timeline and does not play the other movieclips. the code looks something like this:
if(gotolinki == undefined)
{
trace("gotolinki ist undefined");
}
else
{
if(gotolinki =="fullservice")
{
_root.gotoAndPlay(4);
_root.mc_navigation_services.gotoAndPlay(2);
_root.container.products_cont_intern.gotoAndPlay(2);
how can i make all 3 parts play? i am really, really stuck and it would be great if someone could help!
thanks lots!
}
i've been working on an application where i use a variable to get to a specific part of the application. now the name "fullservice" is nested within two different parts - in the mc_navigation_services movieclip (that is where the button calls the action to open the file nested in another movieclip). the text i have is nested within two other movieclips (all not on the main timeline). it all happens in frame 4 of the main timeline but if i call frame 4 and then say _root the specific frame in the movieclip it stops at frame 4 of the main timeline and does not play the other movieclips. the code looks something like this:
if(gotolinki == undefined)
{
trace("gotolinki ist undefined");
}
else
{
if(gotolinki =="fullservice")
{
_root.gotoAndPlay(4);
_root.mc_navigation_services.gotoAndPlay(2);
_root.container.products_cont_intern.gotoAndPlay(2);
how can i make all 3 parts play? i am really, really stuck and it would be great if someone could help!
thanks lots!
}