[FMX] Simple ? Variable issue

I have a dropdown menu in my main movie with buttons like so…

onClipEvent (mouseUp) {
_root.Flabel = 25;
}

After clicking the button it sets the variable and an external movie is loaded.

Within the external movie the variable is called here

_root.contents.gotoAndStop(_root.FLabel);

This all works fine and dandy but I want to have several buttons go to different frames. Right now if I add this to another button:

ie onClipEvent (mouseUp) {
_root.Flabel = 17;
}

The variable doesn’t get replaced. It just stays set to whatever the first buttons variable is set to. Shouldn’t the mouseUp automatically change the variable when it’s clicked. Not sure why this doesn’t work.

Try using global variables?

:hr: