Connecting two or three different Scenes with Actionscript

[font=Fixedsys][color=slategray]Hello everybody![/color][/font]
[font=Fixedsys][color=slategray]I’m having a hard time finding out the script ,that will fork for my flash movieclip.I have two separated scenes and i want them to be connected to each-other with some kind of script[/color][/font].[font=Fixedsys][color=slategray]Can anybody help me ,please?[/color][/font]

Hi Nanuka,

If ur having 2 diff swfs then here is the code:

sceneOneButton.onPress(){
getURL(“Movie2”, “_self”);
}

And if only one Movie having 2 Scenes:

sceneOneButton.onPress(){
gotoAndStop(“Scene2”, 1);
// gotoAndStop(“Scene2”, “labelName”); //can give label name or frame no
}


aShIsH

thanks ashishchandras for your response! I will try this and i hope it will work.