如何在Flash中加载用户的文件?
我想在应用程序初始化后立即加载用户的文件。我有这样的代码:
fll = new FileReference();
fll.browse([new FileFilter("Text *.txt", "*.txt")]);
按下某个按钮时它工作正常,但是当我将它放入框架的代码中时,它不起作用。我该怎么做?
I would like to load a user's file right after the app is inicialized. I have this code:
fll = new FileReference();
fll.browse([new FileFilter("Text *.txt", "*.txt")]);
It works fine when some button is pressed, but when i just put it inside the frame's code, it doesnt work. How can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
出于安全原因,此函数仅适用于用户交互(鼠标单击、按键等),因此当您将其粘贴到常规框架脚本中时它将不起作用。
This function works only on user interaction (mouse click, key press etc) for security reasons, so it won't work when you paste it in regular frame script.