| 1234567891011 |
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" height="100" creationComplete="init()">
- <mx:Script>
- <![CDATA[
- private function init() : void {
- progress.setProgress(1, 0);
- }
- ]]>
- </mx:Script>
- <mx:ProgressBar id="progress" mode="manual" color="white" labelPlacement="center" height="85" fontSize="20" indeterminate="true"/>
- </mx:Canvas>
|