[flexcoders] Calling http services in separate file

2008-04-16 Thread ghus32
Hello Everyone,

I want to clean up my code and put all of my http services in a 
separate mxml file..

how would I call these at runtime??

Thanks



RE: [flexcoders] Calling http services in separate file

2008-04-16 Thread Tracy Spratt
Implement this as data model, using a bindable singleton.  Keep the
result data in that object.

 

Implement public properties and methods to control the functionality.
Bind the UI to the model's properties.

 

I just used this technique for the first time myself, and it rocks.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ghus32
Sent: Wednesday, April 16, 2008 12:52 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Calling http services in separate file

 

Hello Everyone,

I want to clean up my code and put all of my http services in a 
separate mxml file..

how would I call these at runtime??

Thanks