帮助 - Flash CS5 - 打印(程序的打印屏幕)

发布于 2024-10-23 18:04:03 字数 146 浏览 1 评论 0原文

我希望客户可以使用 Flash 程序打印他们现在所看到的内容。

这怎么可能?这就是为什么我说(打印程序屏幕),因为它实际上打印了人们此刻所看到的内容。

问题是我的程序会引导到某些地方和照片组合。 所以我想要这个功能。

这可能吗?

I would like the clients to print what they are seeing at the moment with the flash program.

How is this possible? That is why I said (print screen of program) because its actually printing what the person is seeing at the moment.

The thing is that my program leads to certain places and combinations of photos.
So I would like this functionality.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆° 2024-10-30 18:04:03

我假设您希望客户实际打印一些内容而不是屏幕抓取......?

您可能需要的是 PrintJob()。
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3 /flash/printing/PrintJob.html

var my_pj:PrintJob = new PrintJob();
if (my_pj.start()) {
  try {
    my_pj.addPage(this.stage);
  }catch(e:Error) {
    //handle error 
  }
  my_pj.send();
}

I assume you want the client to physically print something as opposed to a screen grab..?

What you are probably after is PrintJob().
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/printing/PrintJob.html

var my_pj:PrintJob = new PrintJob();
if (my_pj.start()) {
  try {
    my_pj.addPage(this.stage);
  }catch(e:Error) {
    //handle error 
  }
  my_pj.send();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文