For loop

:blush:
[AS]for (i = 100; i < 600; i++) {
trace (i);
}[/AS]
how can i increment a diferent value to the var i, to get a output like this:
100, 200, 300, 400, 500, 600

i found this way:
[AS]for (i = 1; i < 600; i++) {
i += 99;
trace (i);
}[/AS]

but isnโ€™t possible to do all the increment to the i var inside the for ()?

:slight_smile: