Hi,
How can I change the color of a progressBar in ActionScript 3.0?
ActionScript Code:
var progressBar:ProgressBar = new ProgressBar();
progressBar.mode = ProgressBarMode.MANUAL;
progressBar.setSize(200, 25);
progressBar.move(750, 260);
progressBar.rotation = -90;
progressBar.setStyle("barPadding", 3);
addChild(progressBar);
On Adobe Help page, it does not mention how to customize a progressBar using setStyle for AS 3.0.
Thank you for your help.