I have a .swf movie file called "sec1.swf". In this sec1.swf ... there are practically three scene namely scene1, scene2, and scene3.

I got a MC called "playstop" ... consist of a play button and a stop button. When the user click on the play button, it will change to the stop button ... meaning inside my "playstop" there is two layer with 2 frames each. The first frame hold the stop button and the second frame hold the play button.

<HR>
My problem is ... the "playstop" mc works fine with all the other .swf file which only consist of two scenes ... but problem comes into the picture once's the .swf file consist of three scenes. When the user click on the stop button in scene two ... i want it to jump to scene one and stop there!! The problem now is the button wasn't working ...

Can somebody help!!

Actually, my buttons are suppose to work in such a way that ... when user click on the stop button ...
On(Release)
Play
Check the _currentframe status
if _currentframe is in scene 1
Goto and Stop (Scene 1)
else if _currentframe is in scene 2
Goto and Stop (Scene 2)
else if _currentframe is in scene 3
Goto and Stop (scene 3)
End On

For the play button
On (Release)
it will play from the frame where had been stopped previously.