Im finally starting to understand i now need to dig into flex action
script for many things...can someone guide me to a doc containing
details on where i can begin the learning process?

------------------------------------------------------------------------\
----------------------------------------------------------------------



Do I need to have more then one of the Httpservice defined or can i
program a generalrequest function and have a search button call it with
the url param's i need?



<mx:HTTPService id="stations_search_request"
url="xml.php?searching_station=true" method="POST"
result="defaultResult(event)" >
</mx:HTTPService>



public Function generalrequest(xmlurl){
                var httpRequest:HTTPRequestMessage = new HTTPService();
                httpRequest.url = 'xml.php' + xmlurl;
                httpRequest.

            }

Reply via email to