It's the coldfusion CFC Wizard, I can't find any documentation for it..
--- In [email protected], "stephen50232" <[EMAIL PROTECTED]> wrote: > > --- In [email protected], "rumpleminzeflickr" > <rumpleminze@> wrote: > > > > Hi there, > > > > I have generated Pages.as, Pages.cfc, PagesGateway.cfc via the > > coldfusion cfc wizard of a database table. > > > > All is good for retrieving groups of objects and single objects, I just > > need to know how to use the save method in the PagesGateway.cfc. > > > > Below is the code i'm using on a button click, its generating errors as > > I am unsure what to put in the .save() parameters. > > > > Any help would be appreciated! > > > > Many thanks, > > > > Brett > > > > > > > > <mx:RemoteObject id="pages" > > .... > > > > private function savePage():void > > { > > var obj:Object = new Object(); > > obj.page_name = "test"; > > pages.save(<WHAT DO I PUT HERE?>); > > } > > > Hi, > > What errors are you getting? Is save a method of your CFC, is it is > then within the brackets you put the arguments that the CFC's method > requires. > > Stephen >

