FLASH 计数外部文本文件中的符号
问题是我需要计算外部 .txt 文件 djs/1/text.txt 中的符号 如果这个外部文本文件包含超过 50 个符号,那么我需要在我的 Flashmovie 中回显动态 Flash 文本(Myflashtext.htmlText ="some text";)中的一些文本。
The problem is that i need to count symbols in external .txt file djs/1/text.txt
If this external text file contains more than 50 symbols then i need to echo some text in Dynamic flash text(Myflashtext.htmlText ="some text";) in my Flashmovie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了避免通过将所有现有符号写入单独的文本文件来完成的手动工作,您可以使用用户 James Ward 过去推荐的解决方案。
请参阅问题&答案:获取实现接口的 ActionScript 类实现接口
使用
getDefinitionNames()
可能会对您派上用场。To avoid this manual work you're doing by writing all the existing symbols to a seperate Text file, you could use a solution that user:James Ward have recommended in the past.
See question & answer for: Get ActionScript Classes that Implement an Interface
The use of
getDefinitionNames()
might come in handy for you.