powder
March 14th, 2003, 12:37 PM
Hello, I am having a bit of trouble here, I have this action on my buttons:
on (press) {
_root.nPage = "company";
AnimationMC.play();
}
on (press) {
gotoAndPlay(3);
}
I am trying to have a button change frames on the main timeline (gotoAndPlay X) and also load a MC on the same click.
However I suck at actionscripting and I can't figure this out. I think what is happening is because the on(press) is separate it is causing my pages to load at different times when I click real fast when AnimationMC is playing. However if I wait for the animation to load first it works %99 of the time.
Anyway this is causing conflicts, I hope this makes sense is there a way to combine the 2 to say
on press play this movie and also goto frame 3 ???
or a better idea??
Thanx for you help...
see ya
on (press) {
_root.nPage = "company";
AnimationMC.play();
}
on (press) {
gotoAndPlay(3);
}
I am trying to have a button change frames on the main timeline (gotoAndPlay X) and also load a MC on the same click.
However I suck at actionscripting and I can't figure this out. I think what is happening is because the on(press) is separate it is causing my pages to load at different times when I click real fast when AnimationMC is playing. However if I wait for the animation to load first it works %99 of the time.
Anyway this is causing conflicts, I hope this makes sense is there a way to combine the 2 to say
on press play this movie and also goto frame 3 ???
or a better idea??
Thanx for you help...
see ya