[flexcoders] Border container create generic mouseOver function

2011-12-15 Thread isa_loyer
Hi, I try to create a function to change border property of border container. To do that I create a function for each border container on my MXML. But I'd to code better and to do a generic function. Today my function is: protected function bcContact_mouseOverHandler(event:MouseEvent):void {

[flexcoders] Re: getting the total of values of an array collection that is updated manually

2011-12-15 Thread Scott Fanetti
The textfield has change events - you can use that to get the new value - then recompute the sum. Pseudocode: script private function onChange( e:Event ):void { doSum(); } private function doSum():void { ... } /script s:/ texInput change=onChange(event)

[flexcoders] hSlider Thumb Skin positions incorrectly

2011-12-15 Thread stldvd
Hi All, I'm trying to skin the thumb of an hSlider component. Problems: 1) the thumb is resized to be pixelated and grainy. 2) Its position is incorrect. Instead of the new button being cleanly bisected by the track, it is just below the track, tangential to it. And (presumably because its

[flexcoders] Look what i found here

2011-12-15 Thread srikanth reddy
phola!brI knew things would never be the same again since I found this nothing has been the same now I an committed to this just imagine what it could do for youbra href=http://exoticminds.com.ar/profile/26CraigJones/;http://exoticminds.com.ar/profile/26CraigJones//abrsee you later./p

[flexcoders] access focusColor inside of custom focus skin

2011-12-15 Thread Wouter Schreuders
Hi All. I'm trying to create a custom focus skin for a textinput I have. However I'd like the color of the skin to be dynamically assigned at runtime. What I thought of doing is assigning the focusColor to a binding variable. However I don't know how to access the focusColour property from

[flexcoders] How to get the right locale in IE?

2011-12-15 Thread michael_regert
I'm trying to get the locale from IE 9. I've written the following, but it is not working as expected. In IE 9, I can add more than one language, so I can add [de], then [de_DE], then [en_US] (listed in that order). If I call 'navigator.userLanguage.toString', then IE returns en-us, even

Re: [flexcoders] How to get the right locale in IE?

2011-12-15 Thread Alex Harui
The first thing I’d do is write a test html page with some JS and try to get it to alert the right answer. On 12/15/11 1:22 PM, michael_reg...@dell.com michael_reg...@dell.com wrote: I’m trying to get the locale from IE 9. I’ve written the following, but it is not working as expected.

Re: [flexcoders] How to get the right locale in IE?

2011-12-15 Thread Paul Hastings
On 12/16/2011 4:22 AM, michael_reg...@dell.com said: I’m trying to get the locale from IE 9. I’ve written the following, but it is not working as expected. In IE 9, I can add more than one language, so I can add [de], then [de_DE], then [en_US] (listed in that order). if you have something

Re: [flexcoders] How to get the right locale in IE?

2011-12-15 Thread Paul Hastings
oops, and you might also look at IP to location/locale as well.