Anybody here at Kirupa ever done any work with flash/coldfusion using flash remoting?
Primarily with returning recordsets from a database to flash and doing stuff with them?
I can return recordsets to flash and attach clips based on row’s in the record set (just like xml really). What I can’t seem to figure out is how to take advantage of ColdFusion’s Pageable recordsets and Flash’s ability to display a page and keep a page in cache, etc.!
anybody know how to do it or know of a good tute?
I’ve tried the recordset.setDeliveryMode like this:
rs = new RecordSet();
rs.setDeliveryMode("page", 4, 1);
getlist_Result = function(rs){ my function goes here (duh!)}
but it does not work. I’m sure i’m just not using the recordset object correctly!!!
Where’s Scotty when you need him?