Hi,
Anyway, perhaps you can try something like soeffectively it disables the button until its either on frame 1 or the last framePHP Code:button.onPress = function()
{
if (_currentframe == 1)
{
play();
}
else if (_currentframe == _totalframes)
{
gotoAndStop(1);
}
};




Reply With Quote