- Has been a member for 2-3 years
- Exclusive Author
- Sold between 10 000 and 50 000 dollars
- Bought between 1 and 9 items
- Referred between 10 and 49 users
Nice file
Nice file
Nice progress bar.
Nice look
ok. Have a question. i am using this progressbar preloader while my images are being uploaded. So once uploaded they are resizing on the server. SO i am trying to include 2 preloaders, one this one for uploading with percentage sign and another one for initializing process which i want to make without percent sign and indicating different progress then this one.
So is there a way to custumize this preloader to make it 1 – without percent sign 2- different loading style, maybe striped going from left to right and from right to left, back and forth.
COPYRIGHT © 2012 ENVATO| TERMS OF USAGE| SUPPORT/HELP| ICONS BY TANGO + WEFUNCTION + FAMFAMFAM
Adobe®, Flash®, Flex®, Fireworks®, Photoshop®, Illustrator®, InDesign® and After Effects® are registered trademarks of Adobe Systems Incorporated.
-In the class ‘ProgressBar’ you can add two methods to show/hide the progress. This methods may be like this:
public function hideProgress():void { aCounter.aText.visible = false; }
public function showProgress():void { aCounter.aText.visible = true; }
and then you call it in method ‘setProgress’ where you want.
-To change the percent sign you can do a method to set the percent sign you want. For example:
protected var aProgressUnit:String = ”%”; public function setProgressUnit(unit:String):void { aProgressUnit = unit; }
and then, in ‘setPosition’ method you can put this line:
aCounter.aText.text = value.toString() + aProgressUnit;
-The control with the other changes will be a complete diferent control.
You can send me an email for reply you with this changes explained here.
Anyway, I’m working in other preloaders that will do the functionality you want.