Beware that auto formatting eats your actionscript some times !!!

See the following code

for (var i = 0; i<5; i++) {
if (i == 2) {
continue;
}
trace(i);
//traces 0, 1, 3, 4 (skips 2)
}

If you apply Auto Format to the code it becomes

for (var i = 0; i<5; i++) {
if (i == 2) {
}
trace(i);
//traces 0, 1, 2, 3, 4 (OOPS!!!)
}