Ok, this is kinda weird... I have pretty standard buttons and then just tell the timeline to go to a specific label. But it only moves forward along the timeline, not backwards. I have the below ActionScript on the first frame @ "Home", and its the only key on that layer for the whole time, so I assume that all these buttons should work no matter the current frame along the timeline. If I click on Btn_2ndThing, nothing happens when I then try to click on Btn_1stThing, but if I click on Btn_1stThing FIRST, then it will go to Btn_2ndThing. make sense?

Actionscript at Home frame:

onEnterFrame = function(){
Btn_Home.onRelease = function()
{
gotoAndStop ("Home");
}
Btn_1stThing.onRelease = function()
{
gotoAndStop ("1stThing");
}
Btn_2ndThing.onRelease = function()
{
gotoAndStop ("2ndThing");
}
}

The names of the buttons is also consistant throughout the timeline..

Help!