Re: [flexcoders] ActionScript setting width to 100%

2006-06-03 Thread jeremy lu
are you sure percentWidth is depricated ?just used it in F2B3 and works well.On 6/2/06, Tim Scollick [EMAIL PROTECTED] wrote: Assuming percentWidth is depricated,Is that documented somewhere? Where can I find out which other deprecated code pieces I am using regularily? On 6/2/06, Tom

RE: [flexcoders] Column Chart Help

2006-06-03 Thread Matt Horn
I don't think you can have formatted data for linear axes -- in other words, remove the commas from the data in the data provider and it works fine. You can then add them back in if you want the commas to appear in data tips by using a datatipFunction. Hth, matt -Original Message-

RE: [flexcoders] Changing Color at Run Time on My PieChart

2006-06-03 Thread Matt Horn
you can use the setStyle method to set the value of the fills property, like this: series1.setStyle("fills",[0x00,0x00FF00]); hth, matt horn flex docs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chaitu VadlapatlaSent: Friday, June 02, 2006

RE: [flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-03 Thread Matt Horn
I don’t remember if this is a Beta 3 change or not, but try this instead: managers manager-classflash.fonts.JREFontManager/manager-class manager-classflash.fonts.BatikFontManager/manager-class /managers Hth, Matt Horn Flex docs -Original Message-

RE: [flexcoders] E4X, SOAP and namespaces, oh my!

2006-06-03 Thread Franck de Bruijn
Hi Ben, Seeing all your e-mails with questions about webservices, it looks, like myself, you are struggling to get webservices to work within Flex. Personally I investigated the compliance of Flex for both RPC/Encoded and DOC/Literal webservices. I concluded that Flex supports the RPC/Encoded

[flexcoders] UTF Support in Flex 2 and Flash MX 2004 for SWF

2006-06-03 Thread p_pirzada
Hi, I have a question. Do we have UTF support in Flash MX 2004 Or in Flex 2? Like I want to type language in Arabic and want to see in SWF. Will it support UTF code to display it.? Because dream weaver is displaying properly but when I used Flash MX 2004 its not. Or know any software

[flexcoders] Re: roll-over-color CSS property

2006-06-03 Thread klumikaze
Sorry, meant F2B3... I've checked all through the API docs and the changes from B2 to B3, etc as well. Thoughts? Thanks, Brian --- In flexcoders@yahoogroups.com, Karl Johnson [EMAIL PROTECTED] wrote: 1.5? textRollOverColor is the style. Make sure to check the API docs whenever you are

[flexcoders] Accessing data in a Model

2006-06-03 Thread codeintime
Hi I have an xml file eg: ?xml version=1.0 encoding=utf-8? activity title=Classification categories category name=Category 1 updated / category name=Category 2 / /categories /activity I load xml via a httpservice and place in a model: mx:HTTPService id=srv url="" useProxy=false/ mx:Model

[flexcoders] layout components from right in HBox

2006-06-03 Thread Husain Kitabi
Hi How to layout components in HBox where if i want to add a button it should appear on the right end of the HBox.Thankshussain Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] layout components from right in HBox

2006-06-03 Thread Darren Houle
You can do this: mx:HBox width=400 mx:Spacer width=100%/ mx:Button label=MyButton/ /mx:HBox You'll see the button is pushed to the right side of the 400 px wide hbox Darren From: Husain Kitabi [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] layout components from right in HBox

2006-06-03 Thread Ralf Bokelberg
You can use a spacer width a width of 100% as the first element of your hbox. cheers,ralf On 6/3/06, Husain Kitabi [EMAIL PROTECTED] wrote: Hi How to layout components in HBox where if i want to add a button it should appear on the right end of the HBox.Thankshussain Yahoo! Messenger

Re: [flexcoders] layout components from right in HBox

2006-06-03 Thread Carlos Rovira
or use horizontalAlign=right + width=100%On 6/3/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: You can use a spacer width a width of 100% as the first element of your hbox. cheers,ralf On 6/3/06, Husain Kitabi [EMAIL PROTECTED] wrote: Hi How to layout components in HBox where if i want to

RE: [flexcoders] Re: roll-over-color CSS property

2006-06-03 Thread Matt Horn
Does something like this work? (works in the latest build for Flex 2)... ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml mx:Script![CDATA[ public function changeMyStyle1(e:Event):void { e.currentTarget.setStyle(textRollOverColor,0x33CCFF); } ]]/mx:Script mx:Button