[flexcoders] The problem about binding HttpService result to ArrayCollection

2006-09-09 Thread beloved_zhou
I try to bind the result of HttpService to an ArrayCollection. Here is the code: [Bindable] public var myList:ArrayCollection; mx:HTTPService id=simpleHTS url=list.xml result=myList = new ArrayCollection(simpleHTS.lastResult.list.name) / mx:ComboBox id=NameSelect dataProvider={myList}

[flexcoders] Re: Help Loading ByteArray into Image

2006-09-06 Thread beloved_zhou
I had tried ID3Stream example, that's great. I have some problems about load ByteArray into a Image. I don't like to resize my Image Container. How could I do that load an artwork from mp3 but without resize Image container? Thank you very much. --- In flexcoders@yahoogroups.com, Ben Stucki

[flexcoders] Re: Is this a bug? About Number type.

2006-08-31 Thread beloved_zhou
to the precision you need? Take a look at the toFixed() method of the Number class. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of beloved_zhou Sent: Wednesday, August 30, 2006 4:22 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Is this a bug? About Number type.

2006-08-30 Thread beloved_zhou
I am using Flex2.0, and I try to get a result about 3 multiply 7.9, the result should be 23.8, but I got 23.703. Here is a sample code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:TextInput x=76 y=348 id=txt_1