[flexcoders] Re: Cazirngorn and AMFPHP1.9 HELP

2008-01-31 Thread mixmi2004
On button press send array objects.How record them in Mysql? The the result is 1 record -$name="",description="" and price="" Can you help me? public class SendDelegate { private var responder :IResponder; private var service : AbstractService;

[flexcoders] Re: Cazirngorn and AMFPHP1.9 HELP

2008-01-29 Thread mixmi2004
txs Muzak --- In flexcoders@yahoogroups.com, "Muzak" <[EMAIL PROTECTED]> wrote: > > Make sure that Services is added to the Application document. > > xmlns:mx="http://www.adobe.com/2006/mxml"; > xmlns:business="com.packageName.projectName.business.*" > layout="absolute" > > > > > >

[flexcoders] Re: Cazirngorn and AMFPHP1.9 HELP

2008-01-29 Thread ericbichara
Hej, try substituting the following lines var token : AsyncToken = service.sendAll(); token.addResponder(responder); with var token:Object = service.sendAll(); call.addResponder(responder); also check that your php file and class are called "sendServices" --- In flexcoders@yahoogroups.com,