Thanks for the replies and those important points Oleg - nice!


On 21 May 2010 08:57, ouaqa <abenef...@gmail.com> wrote:

>
>
> If it may help, this is how I usually manage my remote connections.
> Before you say it's off-topic, I think it might answer your question :
>
> public class LCRemoteConnectionManager
> {
>
> private static var serverRemoteObject : RemoteObject ; // = null
>
>
> private var onGetCelluleFormatListResultFunction : Function ;
> private var onGetCelluleFormatListResultFaultFunction : Function ;
>
> /*
> .... some irrelevant stuff
> */
>
> public function getCellulesFormats (AGetFormatListResultFunction : Function
> ,AGetFormatListResultFaultFunction : Function ) : void
> {
> if (serverRemoteObject === null)
> { this.createServerRemoteObject() ; }
>
> this.onGetCelluleFormatListResultFaultFunction =
> AGetFormatListResultFaultFunction ;
> this.onGetCelluleFormatListResultFunction = AGetFormatListResultFunction ;
>
> serverRemoteObject.getCellulesFormats();
> }
>
> private function getCellulesFormatsResult (AEvent : ResultEvent):void
> {
> if (this.onGetCelluleFormatListResultFunction != null)
> { this.onGetCelluleFormatListResultFunction(AEvent) ; }
> else
> { Alert.show("LCRemoteConnectionManager : getCellulesFormatsResult :
> onGetFormatListResultFunction is null") ; }
> }
>
> So I assign myFunction variables like any others (myFunction = someFunction
> )
> and then, I call it like any other. The only problem is that I need to know
> how to use someFunction when calling myFunction.
>
> good luck
>
>
> --- In flexcoders@yahoogroups.com <flexcoders%40yahoogroups.com>, Nick
> Middleweek <n...@...> wrote:
> >
> > Hello,
> >
> > I can't find any examples on how to create Functon variables?
> >
> > Does anyone have any to hand please?
> >
> >
> > Thanks,
> > Nick
> >
> >
> > --
> > Sent by Nick Middleweek ( { email: n...@..., blog:
>
> > http://blog.middleweek.co.uk } );
> >
>
>  
>



-- 
Sent by Nick Middleweek ( { email: n...@middleweek.co.uk, mobile: +44(0)774
035 5424 } );

Reply via email to