On 5/2/07, tjcox1969 <[EMAIL PROTECTED]> wrote: > Is it possible to include a style sheet in the main application mxml > file and then have all other components and custom components use > those styles?
Yes. You just declare your styles in your main application and all
custom components can use those styles.
For example:
// main app
<Style>
.buttonStyle {
color: red;
}
</Style>
// custom component
<Button label="Button" styleName="buttonStyle" />

