[flexcoders] Re: The 'right' way to do custom styles

2008-01-06 Thread Brian Morearty
Good suggestion, Tom. I voted for #FB-11589. - Brian Morearty Intuit --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Friday 04 Jan 2008, Andrew Strader wrote: > > If you like re-usability, you would also want to consider whether > &g

[flexcoders] Re: Request for feedback on decimal math

2007-12-13 Thread Brian Morearty
the server over LCDS, maintaining precision. 2. We would like seamless conversion to and from String, maintaining precision. This would be useful for REST. - Brian Morearty Intuit --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > Do

[flexcoders] borderSkin is ignored if the backgroundColor is not set?

2007-06-15 Thread Brian Morearty
You'll see that it still doesn't draw. Am I crazy or is this the right behavior? - Brian Morearty Intuit

[flexcoders] Re: Two-way data binding

2007-05-30 Thread Brian Morearty
;s not a ton of coding, though. By the way, since you (correctly) put [Bindable] on your data, your code will work even if you don't explicitly dispatch the propertyChange event. - Brian Morearty Intuit --- In flexcoders@yahoogroups.com, "tsiesser" <[EMAIL PROTECTED]> wr

[flexcoders] Re: How to special characters in resource bundle .properties file

2007-05-22 Thread Brian Morearty
I learned the answer elsewhere so I thought I would post it for posterity and the goodwill of humankind. You have to escape the backslash itself. To escape a backslash, use two backslashes: \\ Examples: label=this is in \\"quotes\\" label=this is on a \\nnew line - Brian Morearty

[flexcoders] Re: Flexbuilder2 bug: line number setting not remembered

2007-05-17 Thread Brian Morearty
Are you switching to another Eclipse Workspace when you see this? Eclipse has this bizarre behavior where your preferences are stored per workspace. - Brian Morearty Intuit --- In flexcoders@yahoogroups.com, li wenzhi <[EMAIL PROTECTED]> wrote: > > I use flexbuilder2.0.1 in win

[flexcoders] Re: Fade Effect on Labels

2007-05-17 Thread Brian Morearty
not work. This help topic gives a brief explanation: http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.\ htm?context=LiveDocs_Parts&file=0736.html <http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp\ .htm?context=LiveDocs_Parts&file=0

[flexcoders] How to special characters in resource bundle .properties file

2007-05-16 Thread Brian Morearty
if I set the UI element's text property instead of its htmlText property): label=this is in "quotes" label=this is on a new line Any ideas? - Brian Morearty Intuit