Is there a 'token' equivalent to use with the URLLoader class? I need to keep track of my events.
I can use token with an HttpService.send() request, how do I use it
with URLLoader?
ex:
var myloader:URLLoader = new URLLoader();
myloader.addEventListener(Event.COMPLETE, loadHandler);
var token:AsyncToken = myloader.load(new URLRequest("getdata.com"));
token.artist = "artist";
I get:
1067: Implicit coercion of a value of type void to an unrelated type
mx.rpc:AsyncToken.

