在 Flash 中跟踪用户历史记录的最佳(最简单)方法或框架
我使用过 SWFAddress,但它似乎充满了怪癖,并且并未在所有浏览器中完全实现。 我不一定需要深层链接,而我只需要在用户浏览 Flash 应用程序时跟踪用户历史记录(用户停留在应用程序中)。
有什么建议、设计模式建议、代码示例吗?
I've used SWFAddress, but it seems full of quirks, and not fully implemented in all browsers.
I don't necessarilly need deep linking, rather I simply need to track a users history as he she travels thru a flash application (user stays in application).
Any suggestions, desgin pattern recommendations, code examples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有类似的东西,我使用数组/向量来跟踪它们的路径。
我为 Flash 文件的每个部分分配了一个代码(例如“Section-1”或“Section-name”),然后将其添加到数组中。
当他们后退一步时,我只删除最后一个项目。
I had something similar and I used an array/vector to trace their path.
Each section of my flash file I assigned a code (say, "Section-1" or "Section-name") and I would add it to the array.
When they go back a step I just remove the last item.