That part is somewhat easy… But it ALL depends on what you are trying to do with that… Let’s just assume that you have one movieclip that contains seven hairstyles from frame 1 to frame 7 in that timeline…
In the button of the main timeline, you will have a button with this script…
Btn_Select.onPress = function ()
{
i++;
goFrame = i % 7;
if (goFrame == 0)
goFrame = 7;
_level0.hair.gotoAndStop(goFrame);
}
Well… One thing you can try is to put the stop() function on all frames… Try that and if that doesn’t work, why don’t you create a little sample so that I can check it??? C:-)