Hi kiran,

This is the sample code of Remote Object in Action Script

public var employeeRO:RemoteObject;

            public function useRemoteObject():void {
                employeeRO = new RemoteObject();
                employeeRO.destination = "SalaryManager";
                employeeRO.getList.addEventListener("result",
getListResultHandler);
                employeeRO.addEventListener("fault", faultHandler);
                employeeRO.getList();
            }

go through this link for more information on remote object in action
script

http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_in...@googlegroups.com.
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to