如何以编程方式关闭文件“保存”柔性窗口?
我正在使用 alivePDF 从我的 Flex 应用程序生成 pdf。当我单击 Flex 应用程序上的“保存 pdf”按钮时,会弹出一个“另存为”窗口,允许我浏览到要保存 pdf 文件的位置。当我们尝试在记事本、word 等中保存任何文件时,它会弹出相同的窗口。如果用户在给定的时间内处于空闲状态,我想以编程方式关闭此窗口。我用来保存pdf的代码如下。
var file:FileReference = new FileReference();
var genPdf:PDF = new PDF();
genPdf = generatePDF(target, generateXML,str);
file.save(genPdf.save(Method.LOCAL), 'graph.pdf');
I am using alivePDF to generate pdfs from my flex application. When I click on the save pdf button on my flex application, a "save as" window pops up which allows me to browse to the location where I want to save the pdf file. Its the same window that pops up when we try to save any file in notepad, word, etc. I want to programatically close this window if the user is idle for a given amount of time. The code that I am using for saving the pdf is as follows.
var file:FileReference = new FileReference();
var genPdf:PDF = new PDF();
genPdf = generatePDF(target, generateXML,str);
file.save(genPdf.save(Method.LOCAL), 'graph.pdf');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不能完成的,因为它会违反闪存的安全模型,即它会允许在用户不知情/许可的情况下将某些内容保存到硬盘中。
This can't be done as it would violate flash's security model, ie it would allow something to be saved to the hd without the user's knowledge/permission.