I'm using AS3 in Adobe AIR for desktop, not in a browser, I'm not sure if that makes a difference in this situation.
URLLoader
.URLLoader
instance.I thought that I would have to deal with the cookies myself, but I'm using Fiddler to trace the HTTP requests and it seems that the cookies are being dealt with automatically even though I'm using a different instance for each request.
My questions:
Actually, just after posting this question I thought that it may be handled by URLRequest
and not URLLoader
. It is: URLRequest.manageCookies
So, to answer my own questions:
manageCookies
property.