Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

Help refining this code, please?

Guest
Apr 15, 2006 Apr 15, 2006
here's the code I'm working with:

stop();
b1.onRelease = test
function test (){
pauseI=setInterval(pauseF,1000);
function pauseF(){

_root.gotoAndStop(3);
clearInterval(pauseI);
_root.coverAll.gotoAndPlay(2);
}
}

Problem I have with this is that both the _root.gotoAndStop(3) and the coverAll.gotoAndPlay(2) both happen after the delay.

How do I set this up so that the coverAll.gotoAndPlay(2) happens IMMEDIATELY while the _root.gotoAndStop(3) waits the delay?
TOPICS
ActionScript
334
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Apr 16, 2006 Apr 16, 2006
I think you need to take _root.coverAll.gotoAndPlay(2); out of your function pause function.
Maybe place it above pauseI=setInterval(pauseF,1000); and see if that works.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 10, 2023 Apr 10, 2023
LATEST

locked

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines