gotoandStop within a movie clip
I have a movie clip name shoes_mc, within this movie clip, there are 10 layers with increasing number of pair of shoes (1 pair in the 1st layer, 2 pairs in the 2nd, and so on). I also have a button name plus_btn, I apply the code below, so every time I click the button, it would gotoandstop to next layer within shoes_mc. I used trace("works") to se if the code works or not.
Then I tested the movie and the trace showed "works" but the layer didn't go to the next layer. It stayed in the 1st layer.
In addition, actually I'm looking for a way to make a plus minus button, every time I click plus, 1 pair of shoes appear, and every time I click minus, 1 pair of shoes disappear. But I don't get logic about this, and I thought the gotoanstop within movie clip will works. Please help me.
plus_btn.onRelease=function()
{
shoes_mc.nextFrame();
trace("works");
}
