Hi there
I have a scolling menu that contains nested movie clips that
are used as buttons. I want the buttons to keep their visted state
once clicked this is the code I am using on the buttons.
on (release) {
_root.gotoAndStop(60);}
onClipEvent (load) {
x = 1;
}
on (press) {
this.gotoAndStop("clicked");
x = 2;
}
on (rollOver) {
if (x == 1) {
this.gotoAndStop("over");
}
}
on (rollOut) {
if (x == 1) {
this.gotoAndStop(1);
}
}
The menu is duplicated to give an infinate look but when it hits the
end of the screen the duplicated mc wont reconize the visited state.
Anyone with any ideas
Cheers :puzzle: