RE: [flexcoders] How to send data to server by using Remote Object ?

2006-02-01 Thread Matt Chotin
The book that iteration::two published has some good suggestions related to these questions: Developing Rich Clients with Macromedia Flex. One of the chapters that describes this is available for download from http://www.iterationtwo.com/flexbook/index.html. Matt From:

Re: [flexcoders] How to send data to server by using Remote Object ?

2006-01-30 Thread Partha Sarathi Das
Hi Matt, Thanks a lot to reply me .Now I am facing a design issue.I have to search for Users having different criterias like "Search by Name","Search By ZIP","Search By Age" etc..I have design a UI using Navigators/Accrodian.If I click on any Search Tab like "Search By Name" or "Search By

RE: [flexcoders] How to send data to server by using Remote Object ?

2006-01-29 Thread Matt Chotin
Create a Java object that has a method that takes two parameters, login and password. mx:RemoteObject id=ro source=yourclass result=handleResult(event) fault=handleFault(event) /mx:RemoteObject //somewhere in your code ro.yourMethod(login, password); //when the method returns