In HTML, I can set my page's background like this:
<style>
body {
background:url(bg.gif) repeat-x left bottom;
}
</style>
But in Flex,can I set the page's background in the same way?
<mx:Style>
Application {
background:url(bg.gif) repeat-x left bottom;
}
</mx:Style>

