Trouble with music player "next" button

I have no idea if this is even enought info, but this is the as on the “next song” button on a jukebox I am creating. When I test it it works fine, but when I bring the movie into the main movie (via an empty movieclip in the main movie), the next button doesn’t work, it just plays the same first song when I hit the next button


on (release) {
	nbsleft = "none";
	stop();
	cge = 1;
	joue = 1;
	if (pause == 1) {
		pause = 0;
	}
	if (i < total) {
		i = i + 1;
	} else {
		i = 1;
	}
	gotoAndPlay(22);
}

is that enough info? Am I missing a relative path? Anyone?

P :slight_smile: