Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Later
-
Adobe Flex SDK 4.0 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. Set usePreloader to true in mxml. Sample code is below.
2. At run time, trace the value.
Actual Results:
It is false.
Expected Results:
true.
Sample code:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" usePreloader="true" >
<mx:Script>
<![CDATA[
import mx.core.Application;
private function getUsePreloader():void
{ trace(Application.application.usePreloader); }]]
>
</mx:Script>
<mx:Button label="Get usePreloader" click="getUsePreloader()" />
</mx:Application>