-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Hey, i have a server UFApi class like so:
class SignupApi extends UFApi {
public function test():String {
return "returned!";
}
}and i have a JS client that tries to call the server method like so:
static public function main() {
var sign:SignupApi = new SignupApi();
trace("returned? " + sign.test());
}The resulting trace is returned? null, I'm probably missing something as the return should be asynchronous, how can i fix this client? Thanks!