Re: [flexcoders] Style for Alert box?

2008-04-24 Thread Derrick Anderson
you can apply the style to all alerts: Alert { ... } or to a single alert: .box1 { ... } var alert:Alert; alert=Alert.show("asdf"); alert.styleName="box1"; Derrick Anderson On Thu, Apr 24, 2008 at 3:29 PM, markflex2007 <[EMAIL PROTECTED]> wrote: > Hi, > > I have a class like ( .box1{

[flexcoders] Style for Alert box?

2008-04-24 Thread markflex2007
Hi, I have a class like ( .box1{...} ) in css file. I need the Alert use the class "box1".How to set the style name to Alert box. Thanks Mark