在flex中加载进度条

时间:2011-01-05 18:58:24

标签: flex actionscript-3 mxml mxmlc

以下代码有什么问题,我将进度条仅作为加载。

  <?xml version="1.0" encoding="utf-8"?>
 <!-- http://blog.flexexamples.com/2009/02/01/setting-the-bar-color-on-the-progressbar-control-in-flex/ -->
 <mx:Application name="ProgressBar_barColor_test"
    xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="vertical"
    verticalAlign="middle"
    backgroundColor="white">

<mx:Script>
    <![CDATA[
        import mx.events.ColorPickerEvent;

        private function colorPicker_change(evt:ColorPickerEvent):void {
            progressBar.setStyle("barColor", evt.color);
        }
    ]]>
</mx:Script>

<mx:ApplicationControlBar dock="true">
    <mx:Form styleName="plain">
        <mx:FormItem label="barColor:">
            <mx:ColorPicker id="colorPicker"
                    selectedColor="red"
                    change="colorPicker_change(event);" />
        </mx:FormItem>
    </mx:Form>
</mx:ApplicationControlBar>

<mx:ProgressBar id="progressBar"
        indeterminate="true"
        labelPlacement="center"
        height="100" />

 </mx:Application>

1 个答案:

答案 0 :(得分:1)

通过“加载”我假设你的意思是进度条没有显示任何类型的具体进度。这是因为您将进度条设置为不确定,这意味着它不会显示进度,但只会设置动画以通知用户正在进行进度但不是任何特定数量。