| Author |
progress bar in air
|
sujendra sugur
Greenhorn
Joined: Mar 25, 2010
Posts: 12
|
|
hi,
i am new to flex and
any body tell me how to add a dynamic progress bar to a window.
the scenario folllowas as,
when ever i click a button on parent window a small new child window should open and progress bar should run implicitly .
Please help me and thanks in advance.
regards
Sujendra
|
 |
Sri Ps
Greenhorn
Joined: Aug 23, 2011
Posts: 1
|
|
In the parent window do this:
protected var ttlWndw:TitleWindow;
protected function btn_click(evt:MouseEvent):void {
ttlWndw = new TitleWindow();
ttlWndw.title = "Spark TitleWindow title";
ttlWndw.width = 300;
ttlWndw.height = 200;
ttlWndw.addEventListener(CloseEvent.CLOSE, ttlWndw_close);
PopUpManager.addPopUp(ttlWndw, this, true);
PopUpManager.centerPopUp(ttlWndw);
}
In the small window/ title window in our case:
In the mxml place a progress bar component and in the action script place this:
init(){
bar.setProgress( <value>, <total>);
}
Not sure what are you trying to upload if its a file then you will need to pass the filesize into the small window and then dynamically get the percentile completed.
|
 |
 |
|
|
subject: progress bar in air
|
|
|