This is for the text links
Code:
on (release) {
if (_root.m<>1) {
_root.scrHEIGHT = 200;
_root.scroller._x = 100;
_root.scroller._y = 150.7;
_root.scroller.scroller.gotoAndStop(2);
_root.TM_title = "Home.02";
_root.READ = 2;
}
}
This one is for the links in the menus Forum
Code:
on (rollOver) {
if (_root.b<>3) {
gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.b<>3) {
gotoAndPlay("s2");
}
}
on (release) {
if (_root.b<>3 and _root.m<>1) {
_root.Y = 255;
_root["b"+_root.b].gotoAndPlay("s2");
_root.cont.cont.gotoAndPlay("diss");
_root.b = 3;
_root.bats.gotoAndPlay("s1");
_root.scroller.scroller.gotoAndStop(3);
}
}
And this one is for the menu button Shop
Code:
on (rollOver) {
if (_root.b<>4) {
gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.b<>4) {
gotoAndPlay("s2");
}
}
on (release) {
if (_root.b<>4 and _root.m<>1) {
_root.Y = 280;
_root["b"+_root.b].gotoAndPlay("s2");
_root.cont.cont.gotoAndPlay("diss");
_root.b = 4;
_root.bats.gotoAndPlay("s1");
_root.scroller.scroller.gotoAndStop(3);
}
}
Thanks so much for helping me out man
Bookmarks