Just correct the one line in this as please

 on (release) {
 if (_root.tv.currentFrame == 1) {
  _root.tv.gotoAndPlay(13);
 }
 _root.tv.nextFrame();
}

ok i know that .currentframe is wrong… how would i go about checking what the current frame is

_currentframe instead of currentFrame

Adam

ok that works but the == didnt work… it made it skip channel 1… then when i just made it =
it acts the same when hitting 11…

on (release) {
if (_root.tv._currentframe == 1) {
_root.tv.gotoAndPlay(13);
}
}

that’s correct…if you’re having problems still it might be something else.

Adam

If i’m understanding correctly you want it so that it goes to the next frame IF the _currentframe IS NOT on 1.

If so, then just add in an else

on (release) {
 if (_root.tv._currentframe == 1) {
  _root.tv.gotoAndPlay(13);
 } else {
 _root.tv.nextFrame();
}
}

ah ha! lostinbeta, you may have solved the puzzle! :wink:

ahah thats it. thank you very much