Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
Adobe Flex SDK 3.0 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" creationComplete="pippox()">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
private function pippox():void {
var i:int;
for (i=0 ;i<5 ;i++)
{ Alert.show(i.toString()); } }
]]
>
</mx:Script>
</mx:Application>
Actual Results:
4 3 2 1 0
Expected Results:
0 1 2 3 4
Workaround (if any):