Pues ahi varias maneras ...
1.- es poniendo el estilo en el mismo codigo de la aplicacion...
Código MXML:
Ver original<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Style>
Application {
backgroundImage: Embed(source="assets/book.jpg");
backgroundSize: "100%";
}
LinkBar {
fontFamily: Trebuchet MS;
}
Panel {
roundedBottomCorners: true;
cornerRadius: 12;
headerHeight: 23;
backgroundAlpha: 0.64;
backgroundColor: #ffffff;
shadowDistance: 4;
shadowDirection: left;
}
</mx:Style>
...
y ahi ya puedes aplicar los estilos a los diferentes componentes de tu aplicacion ...
si quieres diferentes estios pues no pones el nombre del componente sino el nombre del id del componente ....
Código CSS:
Ver originalButton {
cornerRadius: 12;
textIndent: 0;
paddingLeft: 5;
paddingTop: 20;
paddingBottom: 20;
letterSpacing: 2;
highlightAlphas: 0.4, 0;
fillAlphas: 0.48, 0.49, 0.67, 0.65;
fillColors: #3366ff, #999900, #009966, #000099;
textRollOverColor: #00ffff;
textSelectedColor: #ffff00;
borderColor: #009966;
themeColor: #003366;
fontFamily: Georgia;
fontSize: 16;
fontWeight: bold;
}
espero te sirva....
saludos!