q3: How do u spell mechanism?
Ok, I can’t figure this one out -_- I have such trouble placing my variables and using them in and outside of MC’s and the main timeline.
I have this on a button:
on(release){
if(toggle == false){
b1_links.gotoAndPlay(2);
}else{
trace(“frames play in reverse”);
}
}
and in the mc, b1_links, at the end of the frames, I have
toggle = true;
stop();
so basically what I’m trying to do is to have to the TOGGLE on when it hits the end of the mc, and when I click on the button again, the mc reverses and TOGGLE turns off.
-=EDIT=-
ok, i’ve figured out the toggling part, but what about the play frames in reverse part? is it possible?