Got an email from Scott who was trying to work with C# and Flash Remoting. He couldn’t get the “Creating an assembly that returns an ActionScript object” example to work from the FlashRemoting LiveDocs. Looks to me like the documentation is a bit off. From the documentation:
public ASObject returnObject()
{
ASObject aso = new ASObject();
aso.ASType = “Calculator”;
aso.Add(“x”, 100);
aso.Add(“y”, 300);
Flash.result = aso;
}
should probably be:
public ASObject returnObject()
{
ASObject aso = new ASObject();
aso.ASType = “Calculator”;
aso.Add(“x”, 100);
aso.Add(“y”, 300);
return aso;
}
Personal rant: I tried creating a Livedocs account, but for whatever reason, the account I created didn’t work… why does everyone make you create a username? Why not just use your email address?