Guest User

Untitled

a guest
Oct 28th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var baseUri:URI = new URI(loaderInfo.url)
  2. var uri:URI = new URI(URLS.FORGOT_PWD + email)
  3. uri.makeAbsoluteURI(baseUri)
  4.  
  5. var client:HttpClient = new HttpClient()
  6. client.listener.onData = function(event:HttpDataEvent):void {
  7.  //...
  8. }
  9. client.listener.onComplete = function(event:HttpResponseEvent):void {
  10.  //...
  11. }
  12. client.get(uri)
Add Comment
Please, Sign In to add comment