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.

#2323 Assignment appears in constructor on save
Author:
Thisguy248

Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS3Direct Editation
State: closed 

> What steps will reproduce the problem?
Download the attached swf and go to com.metanet.App_MultiPurpose, press Edit ActionScript,
add a spacebar, and press save.
> What is the expected output? What do you see instead?
Here is a variable in the members list of the class
private var SLOW_THRESHOLD:Number = 0.15;
Whenever you save, it appears in the constructor as an assignment, for example if you save
6 times you get this:
public function App_MultiPurpose()
{
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
super();
this._timeFormatter = new TimeFormatter();
}
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
v.21.1.0 nightly build 2920 on windows 10

This is fixed in nightly 2923.
State: new→upgraded
looks good, thanks!
You're welcome.
State: upgraded→closed