channelSet = new ChannelSet();
amfChannel = new AMFChannel("my-amf",
"http://myserver.com/WebORB/weborb.php");
channelSet.addChannel(amfChannel);
myService = new RemoteObject();
myService.channelSet = channelSet;
myService.destination = "WeborbTesting.MyService";
myService.requestTimeout = 30;
myService.getData.addEventListener(ResultEvent.RESULT, resultHandler);
myService.addEventListener(FaultEvent.FAULT, faultHandler);--- In [email protected], "Nick" <nick...@...> wrote: > > Hello all! > > I am trying to use the RemoteObject class along with ResultEvent etc in an AS3 project in FB3. Ideally I would like to remote out using these objects and not have to load the entire Flex framework within an Application container. Is this possible? I have done some searching and my results suggests it is not BUT I could of sworn I have seen some people doing this a while back. Am I mistaken? > > I appreciate it!! > > Thanks. > > Nick >

