|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 06/10/2009 at 05:53AM PDT, ID: 24479129 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: |
MENU SCRIPT
onClipEvent (load) {
num = 1;
this.title1.gotoAndStop(num);
this.title2.gotoAndStop(num);
this.title2.num = num;
this.title3.gotoAndStop(num);
this.title4.gotoAndStop(num);
this.title5.gotoAndStop(num);
this.title6.gotoAndStop(num);
this.title7.gotoAndStop(num);
this.title8.gotoAndStop(num);
}
BUTTON SCRIPT
on (rollOver) {
if (_root.link<>num) {
gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>num) {
gotoAndPlay("s2");
}
}
on (release) {
if (_root.link<>num) and _root.animation == 1 and _root.pic_animation == 1 {
_root.animation = 0;
_root.link_prev = _root.link;
_parent.parent["item"+_root.link].gotoAndPlay("S2");
_root.link = link;
_root.play();
}
}
|
Advertisement