[flexcoders] DownloadProgressBar

2007-04-12 Thread Gautam
Hi, I am not able to change the background color of the DownloadProgressBar which I am using as my custom preloader. I am keeping MINIMUM_DISPLAY_TIME to 10 secs so that you can see in detail that the background color remains grey... I also need to change the progress bar's borderColor,

Re: [flexcoders] DownloadProgressBar

2007-04-12 Thread Angus Johnson
Hi Gautam, You're going to have to write your own draw methods. Look at the createChildren() and drawProgressBar() methods of DownloadProgressBar as a guide. The styling is hardcoded into those methods. You could copy and paste, override and customise with your own styling. hth Angus On 12

RE: [flexcoders] DownloadProgressBar changing the bar color

2006-09-30 Thread Matt Chotin
backgroundcolor by default I think). Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo Bernardini Sent: Wednesday, September 27, 2006 12:52 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DownloadProgressBar changing the bar color

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-27 Thread Paolo Bernardini
no luck yet, regarding the css files, the get compiled in the swf and non loaded at runtime, so they should be ready to change the style of the bar before the application loads. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-27 Thread EECOLOR
Yes, they are compiled into the swf, however, as far as i know they are only used as soon as the style manager is ready, which is (again as far as i know) after the application has been loaded. This means that your preloader is allready gone. Greetz Erik __._,_.___ -- Flexcoders Mailing

[flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
is there a easy way for changing the DownloadProgressBar bar color, using css? I can't find it. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links *

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread EECOLOR
Check the Flex 2 language reference pages and check out the styles section of the Progressbar. Greetz Erik __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
thanks for the reply, I already did that and try to set the bar-color property, but doesn't work. I'm trying to change the color of the bar of the DownloadProgressBar (which is the one the load the application)not Progressbar. __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread Paolo Bernardini
thanks again, I guess the only way to do it is to create a custom preloaders, I thought we could just set a property on a css file, since the only thing that I want to change is the color of the bar. On 9/26/06, EECOLOR [EMAIL PROTECTED] wrote: In that case, check these links, you might

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread EECOLOR
The application has not been loaded, neither has the css manager thingy, the progressbar is loading it. So css contents are not available i think, i might be wrong though, just a guess. Greetz Erik __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] DownloadProgressBar changing the bar color

2006-09-26 Thread aaron smith
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html check out the style explorer adobe released.. you can find the progress bar in there, and what styles you can change. On 9/26/06, EECOLOR [EMAIL PROTECTED] wrote: The application