On 9/23/06, lostinrecursion <[EMAIL PROTECTED]> wrote:

>  The problem is when I get the data back into Flex, I hit a brick wall.

do your AS classes have a fill or init function to fill or init the
class w/data? it should be similar to what you're doing in your CFC to
create the CFC "objects".

package com.sustainableGIS {
        [Bindable]
        public class MapInfo {
                public var host:String;
                public var port:int;
                public var mapService:String;
                public var mapHeight:int;
                public var mapWidth:int
        
                public function MapInfo() {
                }
                
                public function fill(obj:Object):void {
                        for (var i:String in obj) {
                                this[i] = obj[i];
                        }
                } //fill
        } // class
}


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to