Moving between scenes

I am having real trouble with something VERY basic, and it’s driving me nuts - I’m trying to move between scenes; each button on the home page taking me to a different scene. However, I’m finding that no matter which scene I tell the button to go to, it always goes to the same one.

I’ve tried using labels on the scene instead of the frame number, but that doesn’t make any difference. Here is the coding for the 2 buttons, both of which take me to the thisSeasonsTrends scene (go figure!)…

on (release) {
gotoAndStop(“thisSeasonsTrends”, 1);
}

on (release) {
gotoAndStop(“mediaMagic”, 1);
}

I would really appreciate the help. Thanks in advance.