Please Help!!!
im working on my website all in flash. heres the link.
http://www.kevinmceleney.com/testsite2006.html
now i used a tab action script for my news and all of the works. the problem im having is after the 9th tab when you try and click the 10th it goes back to the first.
heres the code any ideas on how to make sure after the 9th tab. which i beive is "feed the owl"
contents.stop();
numberOfTabs = 26;
for (i=1; i<=numberOfTabs; i++) {
line = eval("tab"+i);
line.onRelease = function() {
for (i=1; i<=numberOfTabs; i++) {
otherTabs = eval("this._parent.tab"+i);
otherTabs.bottomLine._visible = true;
}
this.bottomLine._visible = false;
contentFrame = Number(this._name.substr(3, 1));
this._parent.contents.gotoAndStop(contentFrame);
}
}
tab1.bottomLine._visible = false;
