ProgressBar visually represent the progress of a task over time,the type of ProgressBar and various examples of it will help you to learn ProgressBar easily and effectively
ProgressBar visually represent the progress of a task over time,the type of ProgressBar and various examples of it will help you to learn ProgressBar easily and effectivelyProgressBar in Flex
ProgressBar visually represent the progress of a task over time. In Flex there are two types of ProgressBar are present namely:
Use any kind of ProgressBar control when user is required to wait for completion of a task. A label would be useful to display some message.
<?xml version="1.0"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script><![CDATA[
public function disImage():void {img.load(
'Sunset.jpg');}
]]>
</mx:Script></mx:Application>

<?xml version="1.0"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script><![CDATA[
import mx.controls.Alert;progBar.label=
"Current Pogress is="+" "+p+"%";progBar.setProgress(p,50);
p+=5;
}
if(p>50){
p=0;
}
}
]]>
</mx:Script> <mx:Panel title="ProgressBar Example" width="20%" height="25%" paddingBottom="10" paddingLeft="10" paddingRight="10" paddingTop="10" horizontalCenter="10" verticalCenter="10">direction="
right" mode="manual" /> </mx:VBox></mx:Application>
