Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为一个应用程序使用 Stick Sports Flurry Native 扩展是 AS3。
我有主要的工作和事件注册,但在设置用户年龄和用户性别时卡住了。
只是想知道是否有人熟悉如何做到这一点
提前致谢
杰克
查看代码,您需要做的就是调用正确的函数。它们是静态的,所以也要使用类名。
/** * Set user's id in your system. */ Flurry.setUserId(id) // String /** * Set user's age in years */ Flurry.setUserAge(age) // int /** * Set user's gender ("m" or "f") */ Flurry.setUserGender( gender ) // String