Forum Moderators: open
stop();
next_btn.onRelease = function() {
if (_root._currentframe ** 7) {
gotoAndStop(1);
}
else {
nextFrame();
}
}
prev_btn.onRelease = function() {
if (_root._currentframe ** 1) {
gotoAndStop(7);
}
else {
prevFrame();
}
}
error: Operator '*' must be followed by operand
This is for a simple slide show....I'm just learning Flash and I would appreciate any help...