If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : We have got a new blog where we post some interesting SWF internals info.

#227 gotoAndStop wrong frame index
Author:
focus

Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS1/2
State: closed 

Try to export FLA from the attached file. Remove mx folder (since many scripts from there
will not compile back normally due to decompilation errors) and compile that FLA project.
You'll see button is not reacting on mouse hover.
Originally it reacts with background switching.
This is because of wring gotoAndStop frame indexes:
on(rollOver){
gotoAndStop(1);
}
on(rollOut){
gotoAndStop(0);
}
should be
on(rollOver){
gotoAndStop(2);
}
on(rollOut){
gotoAndStop(1);
}

Title: Export FLA issue→gotoAndStop wrong frame index
State: new→opened
Version 1.6.6 was released.
This should be fixed, try it.
State: opened→upgraded
It's fine now, thanks!
State: upgraded→closed