Jump to content

shulungu

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by shulungu

  1. @Pas

     

    What language is this? If it's ActionScript, which it kind of looks like, I think you might be missing quite a few semi colons. Though I've never really used it so can't speak for certain about the syntax. Also, which of these lines produces the error?

     

     

    gotoAndPlay(50);
    ...
    gotoAndPlay(115);
    ...
    

    And so on.

    Its ActionScript and its:

     

     

     

    else (this line pops up as an error)
    if(currentFrame>=51 && currentFrame<=115){gotoAndPlay(115)}
    else (this line pops up as an error)
    if(currentFrame>=116 && currentFrame<=180){gotoAndPlay}(180)}
    else
  2. I am having trouble figuring out this code


    b2.addEventListener(MouseEvent.CLICK,b2handler);

    function b2handler(event:MouseEvent){


    if(currentFrame>=0 && currentFrame<=50){gotoAndPlay(50)}

    else

    if(currentFrame>=51 && currentFrame<=115){gotoAndPlay(115)}

    else

    if(currentFrame>=116 && currentFrame<=180){gotoAndPlay}(180)}

    else

    if(currentFrame>=181 && currentFrame<=195){gotoAndPlay}(50)}


    }


    And it shows the error, "Error 1083: Syntax error: else is unexpected" Can anybody help?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.