Tagged Questions
3
votes
2answers
1k views
ActionScript 3 AsyncToken implementation
Looking for an example or documentation links as to how to implement a method returning AsyncToken.
Note this is not about using/consuming a method returning AsyncToken! I wish to write such methods ...
2
votes
2answers
515 views
What is the point of the ASyncToken?
I've been tasked with the creation of an AS3 client for an HTML5 WebSocket server.
My initial thinking is to create this service using some of the existing classes in AS3, namely attempting to ...
1
vote
3answers
1k views
How to Fake a AsyncToken return in ActionScript 3
Using Parsley,
I have a service that I access through a
[Command(selector='list')]
public function getRssFeed( msg:RssEvent ):AsyncToken
{
return service.list() as AsyncToken;
}
when I point to the ...
0
votes
1answer
189 views
How do i handle Asynctokens in Actionscript classes
Heres my code:
public class Schem
{
public var info:String="";
private var ro:RemoteObject = new RemoteObject("Hibernatetest");
public function Schem()
{
ro.endpoint ...
0
votes
2answers
997 views
How to make URLLoader return an AsyncToken?
I was trying to retrieve binary data over HTTP for my Flex application, and was running into some stumbling blocks. HTTPService did not seem to deal with binary data well, people said to use ...