I've come via a MySql to CF to Flex learning path. As such, 1.) my flex app uses <mx:RemoteObject> with source= pointing at a CFC (in wwwroot/test/cfcs directory).
2.) Said cfc calls a MySql STORED PROCEDURE which returns (say) a list of "owners" (id, firstname, lastname, etc). 3.) CF passes this back to Flex (apparently in the form of an Object?). 4.) Flex then binds this returned data to a <mx:DataGrid>. Now I've read extensively on VOs (as well as Cairngorm/MVC) yet don't fully understand either the "why" or the "how". Assuming as basic an example as possible, I need to use AS3 to first define then instantiate an ownerVO, then a function to populate the ownerVO with the results of the RemoteObject then I populate the DataGrid with ownerVOs???? Comments and/or directions to appropriate learning resources appreciated.

