Hi,All you need to do is to set the new URL to the HTTPServiceand invoke
the send() method of the HTTPService when the userclicks the button.
Please find details on how to invoke aHTTPService in ActionScript
below.var service:HTTPService = new HTTPService();service.url = ;service.method = "GET";service.addEventListener("result",
httpResult);service.addEventListener("fault",
httpFault);service.send();Hope this helps.