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.

#791 AS3 edit problem
Author:
pdmit

Date created:
Type: bug
Visibility: Everybody
Assigned to:
JPEXS

Labels: AS3Direct Editation
State: closed 

Hi!
Next bug:
when you have for example in while loop parameter param1 --; the program changes param1 to
param ++; withoout any information
:-)
My simply code before edit:
while(--_loc2_ > -1)
{
_loc3_ = _loc3_ + " ";
}
First edit without changes:
while(true)
{
_loc2_--;
if(_loc2_ <= -1)
{
break;
}
_loc3_ = _loc3_ + " ";
}
Second edit without changes:
while(true)
{
_loc2_++;
if(_loc2_ <= -1)
{
break;
}
_loc3_ = _loc3_ + " ";
}
Please rty pátrat nightly. I think I fixed it earlier, but not exactly sure. Try it.
I close this issue due to inactivity. Please create new issue if problem persists.
State: upgraded→closed