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.

#95 AS2 while(true)
Author:
pepka

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

> What steps will reproduce the problem?
In whiletrue_test.swf DoInitAction tag 20480 has got an infinite loop.
> What is the expected output? What do you see instead?
Should be something more like this:
public function init($start:Array, $end:Array):Void {
_a = $start;
var i:Number = $end.length - 1;
for (;;) {
i--;
if (i > -1) {
if ($start[i] != $end[i] && $start[i] != undefined) {
_info[_info.length] = $start[i] + $end[i];
}
} else {
return;
}
}
}
> What version of the product are you using? On what operating system?
1.5.2
> Please provide any additional information below. Attach the file you have problem with
if neccessary. If you do not want to publish files YOU CAN CHANGE VISIBILITY TO PRIVATE

State: new→opened
version 1.6.0 was released,
try it, it should be fixed.
State: opened→upgraded
Fixed. Thanks!
State: upgraded→closed