Re: [flexcoders] Size up with Validation Message font size

2005-05-02 Thread Yokota Satoshi
Hi Matt, Oops, I lapsed. So, if I want to change styles dynamically, I can use StyleManager. And if I want to change styles without changing the source code, I can use CSS. Is that right? CSS is eventually translated into calls to setStyle so there isn't much of a

RE: [flexcoders] Size up with Validation Message font size

2005-05-02 Thread Gordon Smith
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Saturday, April 30, 2005 11:28 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Size up with Validation Message font size Hi Gordon, Thank you very much for your help!! I could understand to suit styles for applications

Re: [flexcoders] Size up with Validation Message font size

2005-05-01 Thread Yokota Satoshi
:[EMAIL PROTECTED] Sent: Saturday, April 30, 2005 4:21 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Size up with Validation Message font size I want to know all of global style names. var p:String; for (p in StyleManager.styles) { trace(i) } - Gordon

RE: [flexcoders] Size up with Validation Message font size

2005-05-01 Thread Matt Chotin
: Re: [flexcoders] Size up with Validation Message font size Hi Gordon, Thank you very much for your help!! I could understand to suit styles for applications. - in global.css ErrorTip { fontSize : 20; color : #00; borderColor : #CC; } or - in mxml

RE: [flexcoders] Size up with Validation Message font size

2005-04-30 Thread Gordon Smith
] Size up with Validation Message font size Hi, Matt, Thank you very much for your help! I read the flex document agein, and I could make it to change the styles. following document http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/ht ml/wwhelp.htm?context

RE: [flexcoders] Size up with Validation Message font size

2005-04-30 Thread Gordon Smith
Oops. var p:String; for (p in StyleManager.styles) { trace(p); } - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Saturday, April 30, 2005 4:21 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Size up with Validation Message

RE: [flexcoders] Size up with Validation Message font size

2005-04-28 Thread Matt Chotin
You need to set styles on the errorTip. However adjusting the outer frame design might be difficult. Relevant style defaults are: color: 0xFF, fontSize: 9, fontWeight: bold, shadowColor: 0x00 borderColor: 0xCE2929, borderStyle: errorTipRight, marginBottom: 4,