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.

#185 Export FLA: no on-clip actions exported
Author:
focus

Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: FLA export
State: closed 

Hey, please, take a look at the attached file.
It has a simple button with such code on it:
on (press)
{
fscommand("PUSH_ONE");
}
onClipEvent (enterFrame)
{
if (bVar == true)
fscommand("OK");
}
on (rollOver)
{
GotoAndStop(2);
}
on (rollOut)
{
GotoAndStop(1);
}
I see no such code in the exported FLA on that button.

State: new→opened
version 1.6.5 was released. This should be fixed, try it.
State: opened→upgraded
Yey, it exports fine now, but I see no any indentation there though =\
on(press){
getUrl("FSCommand:PUSH_ONE", "");
}
onClipEvent(enterFrame){
if(bVar==true)
{
getUrl("FSCommand:OK", "");
}
}
on(rollOver){
gotoAndStop(1);
}
on(rollOut){
gotoAndStop(0);
}
State: upgraded→returned
State: returned→opened
version 1.6.5u1 was released
it should be better now
State: opened→upgraded
Yes, thanks, it's fine now!
State: upgraded→closed