是否可以以编程方式从 swf(Flash 应用程序)中提取动态文本?
是否可以以编程方式从 swf(Flash 应用程序)中提取动态加载的文本?
is it possible to extract dynamic loaded text from a swf (flash application) programatically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我心里有件事。
如果加载 swf,则可以在 INIT 处理程序中访问其子级,因此您可以使用递归函数自动循环所有子级并获取 TextFields(动态文本)的所有子级,因为状态文本是 TextSnapshot。
这是一个简单的实现:
听起来像某种爬虫。你有什么想法?
I've got one thing in mind.
If you load the swf, you can access its children in the INIT handler, so you could use a recursive function to loop through all the children automatically and get all children that are TextFields( dynamic text ), as statis text is TextSnapshot.
Here's a simple implementation:
Sounds like some kind of crawler. What do you have in mind ?