If it doesn't work with getStyle() and setStyle(), I wouldn't call it a style. That will just confuse your users. You can certainly implement simple properties that affect visual stuff like colors, but then your developers will wonder why they're not styles and can't be set in CSS. Styles are much more Flexible; for example, a single type selector can affect all instances of a class. Have you looked at how our components implement styles? There is usually very little work, and styles will probably produce a smaller SWF than properties. Each property requires a storage var, a getter, and a setter. Each style only requires a little metadata. Gordon Smith Adobe Flex SDK Team
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, January 04, 2008 2:54 AM To: [email protected] Subject: [flexcoders] The 'right' way to do custom styles So, as I see things, there are two ways to do custom styles in a custom component. The first is the quick and easy way: create a public Bindable of type uint and then use data binding inside your custom component. Your component then has properties for the styles. The second is the more long winded approach of adding meta data, and writing all the code needed to support that. Your component then has actual styles that can be set using setStyle(), but from MXML looks exactly the same as the first way. Given we don't use setStyle(), and use custom components mostly from MXML (rather than AS), is it very wrong to just do it the first, esp. if there are many styles ? -- Tom Chiverton **************************************************** This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by The Solicitors Regulation Authority. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 2500. For more information about Halliwells LLP visit www.halliwells.com.

